div#recording-dot {
    margin-bottom: 10px;
    position: absolute;
    left: 49.5%;
}
div#ContactSection .msg {
    border-color: green !important;
    padding: 7px 2px;
    border-radius: 3px;
    font-size: 18px;
    color: green;
}

div#ContactSection .msg.error-msg {
    border-color: red !important;
    padding: 7px 2px;
    border-radius: 3px;
    font-size: 18px;
    color: red;
}

div#video-upload-container button {
    width: 175px;
}

div#showCcontactToggle label {
    color: #333;
    font-size: 16px;
    position: relative;
    top: -3px;
    padding-left: 3px;
}

div#showCcontactToggle input {
    margin: 3px 6px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

div#showCcontactToggle {
    margin: 15px 1px;
}

#ContactForm.show {
    display: block !important;
}

#vrForm input, #vrForm textarea {
    width: 100%;
    padding: 9px;
    margin: 4px 1px;
    border: 2px solid #eee;
    border-radius: 3px;
    font-family: inherit;
}

#vrForm input::placeholder, #vrForm textarea::placeholder {
    font-weight: 600;
    color: #333;
}

#vrcontainer .time-limit {
    margin-top: 6px;
    padding-left: 3px;
}

#vrcontainer #vrcontainer {
    align-items: center;
}

#vrcontainer .time-limit {
    font-family: inherit;
    color: #333;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 2px solid #eee;
    width: 100%;
    border-radius: 5px;
    padding-left: 10px;
}

div#video-upload-container button:disabled {
    background-color: #ccc !important;
    color: #878585;
    cursor: not-allowed;
    border-color: transparent;
}

#vrForm {
    margin-bottom: 8px;
}

.video-recorder-button {
    height: 33px;
    font-size: 14px;
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    padding: 7px 9px !important;
    margin-right: 6px;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    line-height: 20px;
}

button#start-recording,
button#preview-recording {
    margin-right: 1px;
}

#video-upload-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 360px;
    max-width: 100%;
    justify-content: space-between;
}

div#recording-dot {
    margin-bottom: 10px;
}
.red-blink {
    width: 360px;
    text-align: center;
    position: relative;
}
#vrp_video_preview {
    width: 360px;
    max-width: 100%;
    /*background-color: #bbb;*/
    border-radius: 2px;
}

#recording-dot {
    margin-right: 10px;  /* Space between the dot and the "Start Recording" button */
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    animation: blink 1s infinite;
    opacity: 0.8;
}

@keyframes blink {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0.8;
    }

}

.hidden {
    display: none;
}

.spinner {
    margin-left: 3px;
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: top;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }

}

div#ContactForm .form-instuction {
    font-size: 12px;
    color: #333;
    padding-left: 5px;
    font-weight: 600;
    padding-bottom: 5px;
    padding-top: 5px;
}

#upload-recording {
    margin-left: 0px;
    min-width: 175px;
}

.spacer {
    margin-left: 5px;
    vertical-align: middle;
}

.msg {
    vertical-align: top;
}
 #video-upload-container{
    margin-top: 15px;
    margin-bottom: 15px;
 }
@media(max-width:480px) {
    .video-recorder-button {
        margin-right: 1px;
    }

    div#video-upload-container button {
        width: 80%;
    }

    #video-upload-container {
        display: block;
        text-align: center;
        max-width: 100%;
        margin-top: 10px;
    }

    #vrcontainer .time-limit {
        font-weight: 600;
        text-align: center;
    }

    #upload-recording {
        width: 74%;
    }

    div#ContactSection {
        text-align: center;
    }

    .spinner {
        position: absolute;
        bottom: -7px;
        left: 47%;
    }

}

@media(max-width:991px) {
    #video-upload-container {
        width: 360px;
        margin: 0 auto;
        margin-top: 15px;
    }
    .red-blink{
        width: 100%;
    }
    div#vrcontainer {
        text-align: center;
    }

    #vrForm input, #vrForm textarea {
        margin-bottom: 4px;
    }

}
