/********************
    Responsive
*******************/
@media only screen and (max-width: 560px){
    .modal-sm {
        width: 90%
    }
}
/*******************************/
.rounded{
    border-radius: 5px;
}

.box-shadow{
    box-shadow: 0 0 7px 0px rgb(140 139 139);
}
/*چشمک زن*/
.blink {
    animation: blinkfullkade 1s linear infinite;
}
@keyframes blinkfullkade {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}
table.dataTable tr td{
    white-space: break-spaces;
    word-break: break-word;
}

hr{
    background: #d5d7e1;
    height: 1px;
    border: none;
    margin: 25px auto;
    display: block;
}

.font-small{
  font-size: 10px !important;
}
.font-medium{
  font-size: 14px !important;
}
.font-large{
    font-size: 20px !important;
}
.cursor-pointer{
    cursor: pointer !important;
}
.text-left{
    text-align: left !important;
}