﻿
ddlContactSubject {
    font-size: .86rem;
}

.ui-datepicker {
    border-radius: 20px !important;
    width: 320px !important;
    background: white !important;
    padding: 20px;
    box-shadow: rgba(0,0,0,0.1) 0px 0px 10px;
}

.bt-notification {
    color: red;
    font-size: .75rem;
    padding: 10px;
    margin: unset;
}

.loader {
    margin-top: 15px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #979797;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.element-has-error {
    border: 1px solid red;
}