.modal {
    display: none;
    z-index: 20;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
}


.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.8);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 1rem;
    outline: 0;
    width: 500px;
    padding: 1rem 0;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    color: white;
    padding-right: 16px;
}



.modal-header {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.modal-logo {
    width: 250px;
    height: 100px;
    margin: auto;
}

.modal-logo img {
    width: 100%;
    height: 100%;
}

.modal-error {
    width: 100px;
    height: 100px;
    margin: auto;
}

.modal-error img {
    width: 100%;
    height: 100%;
}


.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: auto;
    padding: 2rem;
}

.modal-body .modal-text {
    font-size: 1.5rem;
    color: #5c8bb4;
    font-family: Gotham-Bold;
    letter-spacing: 1;
    line-height: 0.4;
}

.modal-body .modal-text span {
    font-size: 2rem;
    color: #ff0000;
}

.modal-body .phone-input {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffa200;
    outline: 1px solid #5c8bb4;
    margin: 1rem;
    padding: 8px;
    border-radius: 10px;
    text-align: center;

}

.modal-body .form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-body p {
    color: white;
    font-size: 1.5rem;
}


.modal-footer {
    display: flex;
    justify-content: center;
}

.row {
    flex-direction: row;
}

.media {
    width: 120px;
    height: 120px;
    margin: 0 8px;

}


.media img {
    width: 100%;
    height: 100%;
}



.btn {
    border: 3px solid #5c8bb4;
    border-radius: 10px;
    color: #ffa200;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);

}

.reedem-txt {
    color: #ffa200;
    padding: 14px 28px;
    font-size: 20px;
}


.fade {
    transition: opacity .15s linear;
}

.show {
    opacity: 1;
    display: block;
}

.popup-message{
    width: 400px;
    height: 600px;
}

.popup-message img{
    width: 100%;
    height: 100%;
}

.social-btn-layer {
    position: absolute;
    bottom: 34px;
    width: 100%;
}

.social-btn-layer .social-btn {
    display: flex;
    justify-content: center;
}

.win-text{
    font-size: 30px;
    bottom: 257px;
    background: linear-gradient(74deg, rgba(255,219,75,1) 0%, rgba(233,191,95,1) 51%, rgba(255,219,75,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 20;
}


@media only screen and (max-width: 499px) {

    .popup-message {
        width: 300px;
        height: 380px;
    }

    .social-btn-layer {
        bottom: 18px;
    }

    .modal-content {
        width: auto;
    }

    .modal-logo {
        width: 150px;
        height: 60px;
    }
    .win-text{
        font-size: 20px;
        bottom: 162px;
    }

    .media{
        width: 80px;
        height: 80px;
    }
}