/**************** Start CheckBox ***************/
input[type=checkbox]:checked {
    background-color: #000;
}
.copy-button{
    font-size: 19px;
    font-weight: 600;
    color: var(--danger);
    cursor: pointer;
}
.copy-button:active{
    color: var(--danger-dark);
}
.checkbox-correct{display: inline-block;margin-right: 0.5rem}
.checkbox-correct input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background-color: #d5d5d5;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;

}
.checkbox-correct input[type="checkbox"]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f00c';
    font-size: 30px;
    color: #fff;
    display: inline;
    opacity: 0;
}

.checkbox-correct input[type="checkbox"]:checked { background-color: var(--danger); box-shadow:  0px 0px 5px #105198;}

.checkbox-correct input[type="checkbox"]:checked::after {opacity: 1;}

.checkbox-correct.size-1 input[type="checkbox"]{width: 20px;height: 20px;}

.checkbox-correct.size-1 input[type="checkbox"]::after{font-size: 13px;}

.checkbox-correct.size-2 input[type="checkbox"]{width: 25px;height: 25px;}

.checkbox-correct.size-2 input[type="checkbox"]::after{font-size: 17px;}

.checkbox-correct.size-3 input[type="checkbox"]{width: 30px;height: 30px;}

.checkbox-correct.size-3 input[type="checkbox"]::after{font-size: 19px;}

.checkbox-correct.size-4 input[type="checkbox"]{width: 35px;height: 35px;}

.checkbox-correct.size-4 input[type="checkbox"]::after{font-size: 23px;}

.checkbox-correct.size-5 input[type="checkbox"]{width: 45px;height: 45px;}

.checkbox-correct.size-5 input[type="checkbox"]::after{font-size: 33px;}

/******************************* Fonts Sizes ***********************************/

.text-size-15{font-size: 15px;}
.text-size-16{font-size: 16px;}
.text-size-17{font-size: 17px;}
.text-size-18{font-size: 18px;}
.text-size-18{font-size: 19px;}
.text-size-20{font-size: 20px;}
.text-size-22{font-size: 22px;}

/******************************* Status Styling ***********************************/
.text-active-color{color: #058a00}
.text-non-active-color{color: #ac0000}
.status-box{
    text-align: center;
    color: #fff;
    padding: 7px 16px;
    font-weight: bold;
    border-radius: 7px;
    font-size: 15px;
}
.status-box.red{
    background-color: #a60000;
}
.status-box.green{
    background-color: #11a600;
}
.status-box.yellow{
    background-color: #bac000;
}
.bg-active-color{background-color: #058a00}
.bg-non-active-color{background-color: #ac0000}



.border-width-1{border-style:solid;border-width: 1px;}
.border-width-2{border-style:solid;border-width: 2px}
.border-width-3{border-style:solid;border-width: 3px}
.border-color-#aaa{border-color: #aaa;}
.border-color-#bbb{border-color: #bbb;}
.border-color-#ccc{border-color: #ccc;}

.description-box{
    border: 1px solid #efefef;
    background-color: #fcfcfc;
    padding: 15px;
    margin: 10px;
}
.description-box .box-header{
    text-align: center;
    margin-bottom: 10px;
}
.description-box .box-content{
    text-align: center;
    font-size: 19px;
}
.description-box .box-content #map{
    height: 200px !important;
}

.download-links-box {
    background-color: #f7f7f7;
    border-radius: 7px;
    margin: 15px;
    padding: 15px;
}
.download-links-box .link-name-box{
    color: #555;
    font-size: 18px;
}
.download-links-box .link-button-download-box{
    text-align: right;
}


/****** SideBar ******/
.app-sidebar__user{
    padding: 20px 10px 10px;
}

/***************** Box Checking ****************/
.box-checking-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.box-checking-container .box-checking{
    margin: 5px;
    border-radius: 7px;
    position: relative;

}
.box-checking-container .box-checking input{
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.box-checking-container .box-checking label{
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 5px 13px;
    color: #fff;
    border-radius: 7px;
    font-size: 16px;
    transition: all .3s ease-in;
    background: #ccc;

}
.box-checking-container .box-checking > input:checked + label {
    background: var(--danger);
}

.animated-checkbox.size-lg{font-size: 17px}
.animated-checkbox.size-lg input[type="checkbox"] + .label-text:before {
    font-size: 20px;
}
.app-notification__content li.un-open{ background: #f3f3f3}

i.fa-rotate{
    animation-name: rotateIcon;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes rotateIcon {
    0%   {transform: rotateZ(0)}
    25%   {transform: rotateZ(45deg)}
    50%   {transform: rotateZ(-45deg)}
    100%   {transform: rotateZ(0)}
}

i.fa-scale{
    animation-name: scaleIcon;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes scaleIcon {
    0%   {transform: scale(1)}
    50%   {transform: scale(1.5)}
    100%   {transform: scale(1)}
}



.new-notifications-box {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5;
    padding: 0 15px 15px;
}
.new-notifications-box .notification-box {
    margin-top: 10px;
    padding: 20px 20px 10px;
    background: #eee;
    width: 280px;
    border-radius: 6px;
    color: #000;
    display: block;
}
.new-notifications-box .notification-box:hover,.new-notifications-box .notification-box:active {
    text-decoration: none;
    background: #ddd;
}
.new-notifications-box .notification-box .notification-header {
    margin-bottom: 20px;
}
.new-notifications-box .notification-box .notification-header .icon{
    font-size: 18px;
}
.new-notifications-box .notification-box .notification-header .text{
    font-size: 18px;
    font-weight: bold;
    color: #444;
    margin-left: 15px;
}
.new-notifications-box .notification-box .notification-body {
    font-size: 14px;
    color: #333;
}
.new-notifications-box .notification-box .notification-meta {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
}

.number-notification{
    background: red;
    font-size: 9px;
    padding: 3px 0px;
    border-radius: 50%;
    margin-left: -4px;
}
