﻿/*Scrolling issues with multiple bootstrap modals
*/
.modal {
    overflow: auto !important;
}

.required:after {
    color: #e32;
    content: ' *';
    display: inline;
}

/* Begin Form Validation Alert */
validate_address_contact {
    position: relative;
}

.alert-validate1::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 100%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 20px 4px 10px;
    bottom: calc((100% - 2px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 14px;
    pointer-events: none;
    font-family: Poppins-Medium;
    color: #c80000;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
    margin-bottom: 5px;
    z-index: 1;
    position: absolute;
}

.alert-validate1::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 18px;
    bottom: calc((100% - 1px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 15px;
    margin-bottom: 5px;
    z-index: 1;
    position: absolute;
}

.alert-validate1:hover:before {
    visibility: visible;
    opacity: 1;
}

.true-validate1::after {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 15px;
    color: #00ad5f;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: calc((100% - 1px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 14px;
    margin-bottom: 5px;
}
.showInLeft.alert-validate1::before {
    right: 69px;
}
.showInLeft.alert-validate1::after {
    right: 70px;
}
.showInLeft.true-validate1::after {
    right: 70px;
}
/* End Form Validation Alert */

/*Start boostrap-table export menu*/
.fixed-table-toolbar .dropdown-menu {
    padding-left: 10px;
}
/*End boostrap-table export menu*/