.error {
    color: red;
    width: 100%;
    font-weight: 400 !important;
    font-size: 16px;
    display: block;
}

.response-message {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10000;
}

.form-control {
    color: #495057;
}

.form-control-sm {
    min-height: 35px !important;
    height: 35px !important;
}

.btn-sm {
    min-height: 35px !important;
    height: 35px !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background: transparent !important;
}

.att-checkbox {
    width: 40px;
    height: 40px;
    line-height: 40px;
    /* margin: 0 auto; */
}

.att-checkbox input[type="checkbox"] {
    margin: 0;
    visibility: hidden;
    position: absolute;
    left: 7px;
    top: 7px;
}

.att-checkbox label {
    height: 100%;
    border-radius: 4px;
    display: block;
    perspective: 100px;
    position: relative;
    z-index: 1;
}

.att-checkbox label:before,
.att-checkbox label:after {
    content: "A";
    color: #fff;
    background: #ce1212;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

.att-checkbox label:after {
    content: "P";
    background: #588101;
    transform: rotateY(-180deg);
    left: 0;
    z-index: -1;
}

.att-checkbox input[type="checkbox"]:checked+label:before {
    transform: rotateY(180deg);
}

.att-checkbox input[type="checkbox"]:checked+label:after {
    transform: rotateY(0deg);
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .att-checkbox {
        margin: 0 0 20px;
    }
}

.service-checkbox {
    display: inline-block;
}

.service-checkbox input[type="checkbox"] {
    margin: 0;
    visibility: hidden;
    left: 1px;
    top: 1px;
}

.service-checkbox label {
    width: 46px;
    height: 25px;
    margin: 0;
    border: 3px solid #18224d;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: 0.5s ease;
}

.service-checkbox label:before,
.service-checkbox label:after {
    content: "";
    background: #18224d;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
}

.service-checkbox label:after {
    background: #fff;
    left: auto;
    right: -100px;
}

.service-checkbox input[type="checkbox"]:checked+label {
    background-color: #18224d;
}

.service-checkbox input[type="checkbox"]:checked+label:before {
    left: -100px;
}

.service-checkbox input[type="checkbox"]:checked+label:after {
    right: 2px;
}

@media only screen and (max-width: 767px) {
    .service-checkbox {
        margin: 0 0 20px;
    }
}

.pos-service {
    min-height: 75vh;
    overflow: auto;
}

.height-75 {
    max-height: 75vh;
    overflow: auto;
}

.card-shadow {
    box-shadow: 0 0.5px 2px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    height: 90%;
}

.icon-close {
    color: #dc3545;
    font-size: 24px;
    cursor: pointer;
}