body {
    font-family: Poppins;
    min-height: 100vh;
    background: #80CAF3;
}

.trigger_popup {
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    padding: 20px;
}

#success_trigger {
    background: #32ba7c;
    position: fixed;
    top: 20%;
    left: 20%;
}

#error_trigger {
    background: #ff3636;
    position: fixed;
    top: 20%;
    left: 60%;
}

#loading {
    display: none;
    position: fixed;
    top: 40%;
    left: 40%
}

#success {
    display: none;
    position: fixed;
    top: 20%;
    left: 40%;
}

#countryPopup {
    display: none;
    position: fixed;
    top: 20%;
    left: 40%;
}

#error {
    display: none;
    position: fixed;
    top: 20%;
    left: 40%;
}

.popup-content {
    /* display: block; */
    width: 326px;
    height: 408px;
    background: white;
    box-shadow: 4px 4px 70px 10px rgb(0 0 0/11%);
    border-radius: 25px;
}

.country-content {
    /* display: block; */
    width: 400px;
    height: 408px;
    background: white;
    box-shadow: 4px 4px 70px 10px rgb(0 0 0/11%);
    border-radius: 25px;
    padding: 25px;
}

.imgbox {
    text-align: center;
}

.img {
    width: 112px;
    margin-top: 40px;
}

.title {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: auto;
}

#success .title {
    color: #32ba7c;
}

#countryPopup .title {
    color: #427fe1;
}

#error .title {
    color: #ff3636;
}

.para {
    font-weight: 500;
    width: 80%;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: auto;
}

.button {
    width: 50%;
    display: block;
    margin: 20px auto;
    border-radius: 25px;
    padding: 10px;
    text-decoration: none;
    color: white;
    text-align: center;
    letter-spacing: 0.05em;
}

#c_button {
    background: #ff3636;
    color: white;
}

#s_button {
    background: #32ba7c;
}

#e_button {
    background: #ff3636;
}

.error {
    color: #ff3636;
}

@media (max-width: 750px) {
    #success {
        display: none;
        position: fixed;
        top: 20%;
        left: 5%;
    }

    #countryPopup {
        display: none;
        position: fixed;
        top: 20%;
        left: 5%;
    }

    .country-content {
        /* display: block; */
        width: 335px;
        height: 408px;
        background: white;
        box-shadow: 4px 4px 70px 10px rgb(0 0 0/11%);
        border-radius: 25px;
        padding: 25px;
    }

    #loading {
        display: none;
        position: fixed;
        top: 40%;
        left: 5%;
    }

    #error {
        display: none;
        position: fixed;
        top: 20%;
        left: 5%;
    }
}


.align-self-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
    position: relative;
    min-height: 1px;
}

.g3-button {
    float: left;
    color: #4CAF50;
    line-height: 21px;
    display: block;
    cursor: pointer;
    margin-left: 18px;
    padding: 11px 20px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 2.1px;
    border: 2px solid #4CAF50;
    transition: all 0.2s ease 0s;
    font-size: 1.3125rem;
    font-weight: 700;
    touch-action: manipulation;
}

.g3-processing-speed .g3-button:before {
    content: "";
    height: 2px;
    width: 20px;
    left: 0px;
    background-color: #4CAF50;
    position: absolute;
    top: 50%;
}

@media only screen and (max-width: 767px) {
    .g3-processing-speed .g3-button {
        margin-left: 12px;
        padding: 4px 9px;
        font-size: 0;
        width: 36px;
        height: 36px;
        border-radius: 100%;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
    }
}