﻿.buy-form {
    font-family: GoogleSans, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #393a3d;
    padding: 50px 0;
    background-color: #f5f5f5;
}

    .buy-form .row {
        display: flex;
        justify-content: center;
    }

.buy-form-box {
    display: inline-block;
    padding: 15px;
    background: #fff;
    width: 650px;
}

.buy-form-title {
    font-family: GoogleSans Bold, Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    padding-bottom: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.group-control {
    display: flex;
    justify-content: space-between;
}

    .group-control input, .group-control select {
        font-size: 16px;
        border-radius: 3px;
        border: 1px solid #e0e0e0;
        height: 42px;
        width: 100%;
        padding: 3px 9px;
        margin-bottom: 15px;
    }

.group-name {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

select.cls-prefix {
    width: 80px;
}

.cls-fullname {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -o-calc(100% - 90px);
}

.cls-button-buy {
    justify-content: center;
    display: flex;
    padding-top: 20px;
}

input.btn-buy {
    background: #008CD1;
    font-size: 16px;
    width: 170px;
    height: 44px;
    border-radius: 3px;
}

.nowrap {
    white-space: nowrap
}

.text-bold {
    font-family: GoogleSans Bold, Arial, sans-serif;
}

@media(max-width: 480px) {
    .group-control {
        display: block;
    }

    .buy-form-box {
        margin: 0 15px;
        padding: 15px 0;
    }
}

/*#region Popup ket qua dang ky */
.popup-wrap {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    font-size: 16px;
    line-height: 1.42857143;
    color: #393a3d;
}

.popup-box {
    position: absolute;
    width: 90%;
    max-width: 630px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    z-index: 2;
    background: #FFF;
    padding: 30px 20px;
    border-radius: 5px;
    overflow: hidden;
}

.popup-box-title {
    font-family: GoogleSans Medium, Arial, sans-serif;
    font-size: 26px;
    text-align: center;
    padding-bottom: 10px;
}

.popup-box-des {
    font-family: GoogleSans, Arial, sans-serif;
    text-align: center;
    font-size: 16px;
    padding-bottom: 25px;
}

.cls-button-popup {
    display: flex;
    justify-content: center;
}

    .cls-button-popup #btnClosePopup {
        font-family: GoogleSans, Arial, sans-serif;
        font-size: 16px;
        color: #fff;
        background: #008CD1;
        border-radius: 24px;
        padding: 10px 15px;
        width: 140px;
        text-align: center;
    }

@media (max-width: 480px) {
    .popup-box {
        padding: 20px 15px;
    }

    .popup-box-title {
        font-size: 22px;
    }

    .popup-box-des {
        font-size: 16px;
        padding-bottom: 20px;
    }
}
/*#endregion */

/*#region Loader */
.loader {
    z-index: 9999;
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255, 0.7);
}

    .loader:before {
        content: '';
        border: 10px solid #F3F3F3;
        border-radius: 50%;
        border-top: 10px solid #0a72ba;
        width: 60px;
        height: 60px;
        -webkit-animation: spin .3s linear infinite;
        animation: spin .3s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion */
