﻿/* styles.css */

.container-popup {
    text-align: center;
    margin-top: 50px;
    z-index: 1000;
    position: relative;
}


#popupForm {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.form-content {
    background-color: rgb(0 0 0 / 85%);
    margin: 5% auto;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #888;
    width: 85%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
}

.left-side {
    width: 45%;
    background-image: url(../images/popup-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

    .left-side h2 {
        text-align: center;
        color: #fff;
    }

#timer {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /*     border: 10px solid #ccc; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    text-align: center;
}

.left-side p {
    color: #fff;
}

.circle span {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.right-side {
    position: relative;
    width: 50%;
}

    .right-side h2 {
        font-size: 32px;
        text-transform: capitalize;
        color: #fff;
    }

    .right-side textarea {
        color: #fff;
        font-size: 14px;
        height: 150px;
        border-radius: 10px;
        border: 2px dotted #fff;
        outline: 0 !important;
        background-color: #f6f8fb00;
        margin-bottom: 15px;
        width: 100% !important;
    }

    .right-side input {
        height: 46px;
        color: #fff;
        font-size: 14px;
        padding: 0 20px;
        border-radius: 10px;
        border: 2px dotted #fff;
        outline: 0 !important;
        background-color: #f6f8fb00;
        margin-bottom: 15px;
        width: 100% !important;
    }

        .right-side input:focus {
            color: white !important;
        }



input#btnSubmit {
    background-color: #c8c32f;
}

#btnSubmit:hover {
    background-color: #0974b8;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 0px;
}

    .close-btn:hover,
    .close-btn:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

.captcha-code {
    font-weight: bold;
    color: #fff;
    margin-left: 10px;
}

@keyframes countdown {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 290px;
    }
}

.circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle circle {
    fill: none;
    stroke: #4caf50;
    stroke-width: 10;
    stroke-dasharray: 285px;
    stroke-dashoffset: 0;
    animation: countdown linear infinite;
}

#secondsCircle circle {
    animation-duration: 60s;
}

#minutesCircle circle {
    animation-duration: 3600s;
}

#hoursCircle circle {
    animation-duration: 86400s;
}

/*  @media  */
@media (max-width: 767px) {
    .right-side h2 {
        font-size: 18px;
    }

    .circle span {
        font-size: 25px;
    }

    .circle circle {
        display: none;
    }

    .right-side input {
        padding: 0 5px;
    }

    .right-side textarea {
        padding: 5px;
    }

    .circle svg {
        display: none;
    }

    .close-btn {
        top: -20px;
        right: -10px;
    }

    .form-content {
        width: 99%;
        padding: 30px 20px;
    }
}

#MainContent_ContactUsControl_Image2 {
    margin-bottom: 10px;
}
