.ck-editor__editable_inline {
    min-height: 200px !important;
}


.m-10 {
    margin: 10px;
}

.m-t-15 {
    margin-top: 15px;
}

.m-r-10 {
    margin-right: 10px;
}
.m-l-10 {
    margin-left: 10px;
}

.m-r-15 {
    margin-right: 15px;
}

.m-t-10 {
    margin-top: 10px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-15 {
    margin-bottom: 15px;
}


.img-btn {
    width: 100%;
    text-align: center;
    background: #cacaca;
    height: 28px;
    cursor: pointer;
    display: inline-block;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 5px;
}

.file-btn {
    text-align: center;
    background: #cacaca;
    cursor: pointer;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 8px;
    margin-right: 8px;
}

.space-top-upload-file {
    padding-top: 17px;
    border-top: 1px solid #656565;
}

.fade-effect1 {
    display: block;
    border: none;
    color: white;
    margin-top: 15px;
    height: 1px;
    background: black;
    background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 350, from(#000), to(#fff));
}

.t-center {
    text-align: center;
}

.f-left {
    float: left;
}

.m-message-container {
    direction: ltr;
}


.loaderCircle {
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #000000;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotationCircle 1s linear infinite;
}

@keyframes rotationCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.overlay {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
      left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
    text-align: center;
}

.loaderSearch {
    width: 48px;
    height: 48px;
    display: block;
    margin: 20px auto;
    position: relative;
    border: 3px solid #000000;
    border-radius: 50%;
    box-sizing: border-box;
    animation: animloaderSearch 2s linear infinite;
}

.loaderSearch::after {
    content: '';
    box-sizing: border-box;
    width: 6px;
    height: 24px;
    background: #000000;
    transform: rotate(-45deg);
    position: absolute;
    bottom: -20px;
    left: 46px;
}

@keyframes animloaderSearch {
    0% {
        transform: translate(-10px, -10px);
    }
    25% {
        transform: translate(-10px, 10px);
    }
    50% {
        transform: translate(10px, 10px);
    }
    75% {
        transform: translate(10px, -10px);
    }
    100% {
        transform: translate(-10px, -10px);
    }
}


.btnStateEdit {
    display: inline-block;
    color: #dc3636;
    margin-top: 8px;
    cursor: pointer;
    padding: 4px;
    padding-top: 2px;
    border-radius: 12px;
    padding-left: 12px;
    padding-right: 12px;

}

.btnStateEdit:hover {
    background: #92505025;
}






    /* select design */

select{
    padding: 4px;
    margin-right: 12px;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
    background: white;
}
.myInput{
    padding: 4px;
    margin-right: 12px;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
}