.wheel {
    width: 312px;
    height: 312px;
    border-radius: 50%;
    border: solid 6px #fff;
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 auto;
}
.wheel__inner {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: cubic-bezier(0.19, 1, 0.22, 1) 5s;
}
.wheel__sec {
    position: absolute;
    top: 0;
    left: 62px;
    width: 0;
    height: 0;
    border: solid;
    border-width: 150px 88px 0;
    border-color: transparent;
    transform-origin: 50% 100%;
    /*clip-path: polygon(59% 50%, 100% -160%, 100% 100%, 50% 100%);*/
    clip-path: polygon(55% 55%, 90% -205%, 100% -10%, 50% 100%);
}
.wheel__sec:nth-child(1) {
    border-top-color: #16a085;
    transform: rotate(360deg);
}
.wheel__sec:nth-child(2) {
    border-top-color: #2980b9;
    transform: rotate(18deg);
}
.wheel__sec:nth-child(3) {
    border-top-color: #34495e;
    transform: rotate(36deg);
}
.wheel__sec:nth-child(4) {
    border-top-color: #f39c12;
    transform: rotate(54deg);
}
.wheel__sec:nth-child(5) {
    border-top-color: #d35400;
    transform: rotate(72deg);
}
.wheel__sec:nth-child(6) {
    border-top-color: #c0392b;
    transform: rotate(90deg);
}
.wheel__sec:nth-child(7) {
    border-top-color: #16a085;
    transform: rotate(108deg);
}
.wheel__sec:nth-child(8) {
    border-top-color: #2980b9;
    transform: rotate(126deg);
}
.wheel__sec:nth-child(9) {
    border-top-color: #34495e;
    transform: rotate(144deg);
}
.wheel__sec:nth-child(10) {
    border-top-color: #f39c12;
    transform: rotate(162deg);
}
.wheel__sec:nth-child(11) {
    border-top-color: #d35400;
    transform: rotate(180deg);
}
.wheel__sec:nth-child(12) {
    border-top-color: #c0392b;
    transform: rotate(198deg);
}
.wheel__sec:nth-child(13) {
    border-top-color: #16a085;
    transform: rotate(216deg);
}
.wheel__sec:nth-child(14) {
    border-top-color: #2980b9;
    transform: rotate(234deg);
}
.wheel__sec:nth-child(15) {
    border-top-color: #ff0000;
    transform: rotate(252deg);
}
.wheel__sec:nth-child(16) {
    border-top-color: #c0392b;
    transform: rotate(270deg);
}
.wheel__sec:nth-child(17) {
    border-top-color: #f39c12;
    transform: rotate(288deg);
}
.wheel__sec:nth-child(18) {
    border-top-color: #2980b9;
    transform: rotate(306deg);
}
.wheel__sec:nth-child(19) {
    border-top-color: #16a085;
    transform: rotate(324deg);
}
.wheel__sec:nth-child(20) {
    border-top-color: #c0392b;
    transform: rotate(342deg);
}
.wheel__sec::after{
    content: "";
    position: absolute;
    color: #fff;
    z-index: 1;
    transform: translate(-9%, -720%) rotate(-74deg);
    line-height: 1;
    width: 80px;
    font-size: 16px;
}
.wheel__sec:nth-child(1):after{
    content: "🎫Sim";
}
.wheel__sec:nth-child(2):after{
    content: "💰10k";
}
.wheel__sec:nth-child(3):after{
    content: "😂Trượt";
}
.wheel__sec:nth-child(4):after{
    content: "🎟️Sim";
}
.wheel__sec:nth-child(5):after{
    content: "🥳Thêm";
}
.wheel__sec:nth-child(6):after{
    content: "🎁200k";
}
.wheel__sec:nth-child(7):after{
    content: "🎫Sim";
}
.wheel__sec:nth-child(8):after{
    content: "💰20k";
}
.wheel__sec:nth-child(9):after{
    content: "😂Trượt";
}
.wheel__sec:nth-child(10):after{
    content: "🎟️Sim";
}
.wheel__sec:nth-child(11):after{
    content: "🥳Thêm";
}
.wheel__sec:nth-child(12):after{
    content: "🎁500k";
}
.wheel__sec:nth-child(13):after{
    content: "🎫Sim";
}
.wheel__sec:nth-child(14):after{
    content: "💰50k";
}
.wheel__sec:nth-child(15):after{
    content: "09xx8888xx";
    transform: translate(-14%, -626%) rotate(-73deg);
}
.wheel__sec:nth-child(16):after{
    content: "🎁100k";
}
.wheel__sec:nth-child(17):after{
    content: "🎟️Sim";
}
.wheel__sec:nth-child(18):after{
    content: "💰100k";
}
.wheel__sec:nth-child(19):after{
    content: "🎫Sim";
}
.wheel__sec:nth-child(20):after{
    content: "🎁1tr";
}
.wheel__sec.active{
    animation: blink1 1s infinite;
}
.wheel__arrow {
    width: 30px;
    height: 30px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open sans", sans-serif;
}
.wheel__arrow::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: solid;
    border-width: 0 10px 20px;
    border-color: transparent;
    border-bottom-color: #fff;
    top: -15px;
    left: 5px;
}
.wheel__button {
    width: 20px;
    height: 20px;
    background-color: lightgrey;
    border: none;
    border-radius: 50%;
    clip-path: circle(50%);
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    font-size: 18px;
}
.wheel__button.active{
    animation: blink2 1s infinite;
}
/* Popup Styling */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.popup.active {
    visibility: visible;
    opacity: 1;
}

.popup__content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
}
.popup__head{
    display: flex;
    position: relative;
    justify-content: center;
    margin-bottom: 10px;
}
.popup__head h2{
    margin: 0;
}
.popup__close {
    position: absolute;
    top: 0;
    right: 10px;
    background: linear-gradient(97deg, #ea3d47 1.07%, #fe8059 99.68%) !important;
    border: none;
    font-size: 25px;
    cursor: pointer;
    border-radius: .5rem;
    color: white;
}

@media (hover: hover) and (pointer: fine) {
    .wheel__button:hover {
        color: #27ae60;
    }
}
@media only screen and (max-width: 767px) {
    .popup{
        width: 100%;
    }
    .popup__head{
        justify-content: left;
    }
}
#registrationForm h3{color: red}
#registrationForm .form-group{
    margin-bottom: .5em;
}
#registrationForm .form-group .form-control {
    display: block;
    width: 100%;
    padding: .625rem;
    outline: none;
    outline-offset: 2px;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    color: #111827;
    font-size: 16px !important;
    line-height: 20px;
    border-radius: .5rem;
}
#registrationForm .form__submit{
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    border-radius: .5rem;
    font-size: .875rem;
    padding: .625rem 1.25rem;
    text-align: center;
    width: 100%;
    cursor: pointer;
    background: linear-gradient(97deg, #ea3d47 1.07%, #fe8059 99.68%) !important;
    outline: none;
    border: none;
}
@keyframes blink1 {
    0% {
        border-top-color: #ea3d47;
    }
    50% {
        border-top-color: #fe8059;
    }
    100% {
        border-top-color: #ea3d47;
    }
}
@keyframes blink2 {
    0%, 100% {
        background-color: #ea3d47;
    }
    50% {
        background-color: #fe8059;
    }
}
#footer .zalo-bottom a.none{
    display: none;
}
#footer .zalo-bottom a img.wheel-icon{
    width: 70px !important;
    height: 70px !important;
}
#footer .zalo-bottom{
    align-items: center !important;
}
.form-group{
    text-align: left;
}
.form-group .form-text-error {
    font-style: italic;
    color: #dc0d0d;
    padding: 3px;
    font-size: .875rem;
}
.form-check-input{
    float: left;
    width: 1em;
    height: 1em;
    margin-right: .5em;
    border-radius: .25em;
}
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.registration-form label{
    font-size: 0.85rem !important;
}
.registration-form label a{
    color: #ef2827;
}
