
.main-menu .navbar-header {
    height: 3.6rem;
}
html body.navbar-sticky .app-content .content-wrapper {
    padding: 0.5rem 2.2rem 0;
}
.main-menu.menu-light .navigation .navigation-header {
    margin: 10px 17px 10px 5px;

}
.main-menu.menu-light .navigation li a {
    padding: 5px 12px;;
}
label {
    font-size: .9rem;
}
.modal-dialog-scrollable .modal-content {
    max-height:5000px !important;
    overflow:auto;
}
.custom-file {
    height: auto;
}
.required::before{
    content: "✭";
    color: red;
}
.table td, .table th {
    padding: 5px !important;
}
.btn-xs{
    padding: 2px 7px;
    font-size: 12px;
}
.thum
{
    height: 100px;
    width: 100px;
}

.table thead
{
    text-align: center;
}
.table tbody
{
    text-align: center;
}
input[type="radio"], input[type="checkbox"] {
    margin-left: 5px;
    position: relative;
    top: 2px;
}
.numberShow
{
    unicode-bidi: embed;
    direction: ltr;
}
.table.dataTable {
    font-size: 13px;
}
.card-body {
    padding: 0.7rem;
}
.card {
    margin-bottom: 0.3rem;
}
.number {
    border: 0px;
    unicode-bidi: embed;
    direction: ltr;
}
.wrapper{
    display: inline-flex;
    background: #fff;
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 5px;
}
.wrapper .option{
    background: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 10px;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
}
.wrapper .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
}
.wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background:  #2ecc71;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}
.wrapper .option input[type="radio"]{
    display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{
    border-color: #2ecc71;
    background: #2ecc71;
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot{
    background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before{
    opacity: 1;
    transform: scale(1);
}
.wrapper .option span{
    font-size: 20px;
    color: #808080;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span{
    color: #fff;
}
.hide{
    display: none !important;
}
@media (max-width:576px) {
    .wrapper {
        display: block;
        height: auto;
    }
    .wrapper .option {
        margin-bottom: 5px;
    }
    .modal-body {
        padding: 5px;
    }
}
