#google-rank-checker-form {
    display: flex;
    margin-bottom: 10px;
    border-radius: 40px;
    border: 25px solid #fafafa;
    width: calc(100% - 50px);
    background-color: #fafafa;
    margin-top: -60px;
    position: relative;
    z-index: 10000;
}

#google-rank-checker-form input,
#google-rank-checker-form #region {
    flex: 1;
    padding: 8px 8px 8px 34px;
    border: unset;
    margin-bottom: 0px !important;
    color: #949494
}

#google-rank-checker-form input:focus {
    border: unset;
}

#google-rank-checker-form #search-keyword {
    width: 20%;
    background: #f0efef;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-right: 1px solid #ffffff;
}

#google-rank-checker-form #search-url {
    width: 60%;
    background: #f0efef;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#google-rank-checker-form #region {
    border-radius: 20px;
    max-width: 150px;
    color: #111010;
}

#google-rank-checker-form #region option {
    padding: 4px 8px;
}

#google-rank-checker-form #region option {
    padding: 4px 8px;
}

#google-rank-checker-form #region:focus-visible {
    border: unset;
}

#google-rank-checker-form button {
    padding: 10px;
    background: #FFAA2B;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 20%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#progress-container {
    width: 100%;
    height: 40px;
    background: #ddd;
    border-radius: 20px;
    display: none;
}

#progress-bar {
    /* animation: progress 6s; */
    height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 100);
    /* background-image: linear-gradient(135deg, #3F5FE6, #FF9F65, #FF5254); */
    border-radius: 20px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#progress-bar .loading-text {
    line-height: 40px;
}

div.info-container-rank a {
    background-color: #FFAA2B !important;
    color: #fff !important;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 20%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}

@keyframes progress {
    from {
        width: 0;
        color: rgba(255, 255, 255, 0);
    }

    to {
        width: 100%;
        color: rgba(255, 255, 255, 1);
    }
}

.result-container-rank {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.result-container-rank .result-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.result-container-rank .result-container>div {
    width: 50%;
    text-align: center;
}

.result-container-rank .result-container>div h2 {
    font-size: 48px;
    color: #FFAA2B;
    font-weight: 900;
}

.result-container-rank .google-result .rank-number {
    font-size: 6rem !important;

}

.info-container-rank {
    text-align: center;
}

.info-container-rank h4 {
    color: #111010;
    font-weight: 700 !important;
    font-size: 38px !important;
}

a.button.contact-us {
    background: #FFCD05;
    color: #ffffff !important;
    padding: 25px 40px;
    border-radius: 25px;
}

/* #rank-table-container {
    height: 0px;
} */

#rank-table-container table thead {
    background: #E8F0FE;
}

#rank-table-container table td {
    border: 1px solid #ccc;
    vertical-align: middle;
}

#rank-table-container table tbody td.rank-index {
    background: #E8F0FE;
    vertical-align: middle;
}

#rank-table-container table tbody td.rank-content {
    padding: 20px 40px;
    text-align: left;
}

#rank-table-container table tbody td .google-title {
    font-size: 28px;
}

#rank-table-container table tbody td .google-link {
    color: #3F5FE6;
}

@media only screen and (max-width:767px) {
    #google-rank-checker-form {
        flex-direction: column;
        border-radius: 40px;
        border: 25px solid #fafafa;
        width: calc(100% - 50px);
        background-color: #fafafa;
        margin-top: -60px;
        position: relative;
        z-index: 10000;
        row-gap: 10px;
    }

    #google-rank-checker-form input,
    #google-rank-checker-form #region {
        flex: 1;
        padding: 8px 8px 8px 34px;
        border: unset;
        margin-bottom: 0px !important;
        color: #949494;
        width: 100% !important;
    }

    .result-container-rank .result-container {
        flex-direction: column;

    }

    .result-container-rank .result-container>div {
        width: 80%;
        column-gap: 10px;
    }

    #google-rank-checker-form #region {
        max-width: unset;
    }

    #google-rank-checker-form button {
        width: 100%;
    }

    #google-rank-checker-form #search-keyword {
        width: 20%;
        background: #f0efef;
        border-right: 1px solid #ffffff;
        border-radius: 30px !important;
    }

    #google-rank-checker-form #search-url {
        border-radius: 30px !important;
    }

    #rank-table-container table tbody td.rank-content {
        padding: 20px;
    }
}