﻿.spinning {
    animation: spin-animation 1s infinite;
    display: inline-block;
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

.pointer-alias {
    cursor: alias;
}

.pointer-all-scroll {
    cursor: all-scroll;
}

.pointer-auto {
    cursor: auto;
}

.pointer-cell {
    cursor: cell;
}

.pointer-context-menu {
    cursor: context-menu;
}

.pointer-col-resize {
    cursor: col-resize;
}

.pointer-copy {
    cursor: copy;
}

.pointer-crosshair {
    cursor: crosshair;
}

.pointer-default {
    cursor: default;
}

.pointer-e-resize {
    cursor: e-resize;
}

.pointer-ew-resize {
    cursor: ew-resize;
}

.pointer-grab {
    cursor: grab;
}

.pointer-grabbing {
    cursor: grabbing;
}

.pointer-help {
    cursor: help;
}

.pointer-move {
    cursor: move;
}

.pointer-n-resize {
    cursor: n-resize;
}

.pointer-ne-resize {
    cursor: ne-resize;
}

.pointer-nesw-resize {
    cursor: nesw-resize;
}

.pointer-ns-resize {
    cursor: ns-resize;
}

.pointer-nw-resize {
    cursor: nw-resize;
}

.pointer-nwse-resize {
    cursor: nwse-resize;
}

.pointer-no-drop {
    cursor: no-drop;
}

.pointer-none {
    cursor: none;
}

.pointer-not-allowed {
    cursor: not-allowed;
}

.pointer-pointer {
    cursor: pointer;
}

.pointer-progress {
    cursor: progress;
}

.pointer-row-resize {
    cursor: row-resize;
}

.pointer-s-resize {
    cursor: s-resize;
}

.pointer-se-resize {
    cursor: se-resize;
}

.pointer-sw-resize {
    cursor: sw-resize;
}

.pointer-text {
    cursor: text;
}

.pointer-url {
    cursor: url(myBall.pointer-cur),auto;
}

.pointer-w-resize {
    cursor: w-resize;
}

.pointer-wait {
    cursor: wait;
}

.pointer-zoom-in {
    cursor: zoom-in;
}

.pointer-zoom-out {
    cursor: zoom-out;
}

.min-vh-72 {
    min-height: 72vh !important;
    max-height: 72vh !important;
    overflow-y: auto !important;
}

.max-vh-72 {
    max-height: 72vh !important;
    overflow-y: auto !important;
}

table.dataTable td.dt-control {
    text-align: center;
    cursor: pointer;
}

    table.dataTable td.dt-control:before {
        height: 1em;
        width: 1em;
        margin-top: -9px;
        display: inline-block;
        color: white;
        border: 0.15em solid white;
        border-radius: 1em;
        box-shadow: 0 0 0.2em #444;
        box-sizing: content-box;
        text-align: center;
        text-indent: 0 !important;
        font-family: "Courier New", Courier, monospace;
        line-height: 1em;
        content: "+";
        background-color: #31b131;
    }

table.dataTable tr.dt-hasChild td.dt-control:before {
    content: "-";
    background-color: #d33333;
}

.swal-load-height {
    height: 150px;
    min-height: 0 !important;
}

.modal-max-width {
    max-width: 100% !important;
    padding-left: 80px;
}

@media (max-width: 1200px) {
    .modal-max-width {
        max-width: 100% !important;
        padding-left: 17px;
    }
}

@media (max-width: 575px) {
    .modal-max-width {
        max-width: 97% !important;
        padding-left: 0px;
    }
}

@media (min-width: 576px) {
    .modal-max-width {
        padding-right: 17px;
    }
}

.sticky-footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.w-px-60 {
    width: 60px;
}

.w-px-70 {
    width: 70px;
}

.w-px-80 {
    width: 80px;
}

/******** FLASHING EFFECT ********/
@-webkit-keyframes flashing-bg {
    from {
        background-color: rgba(255, 0, 0, 0.2);
    }

    to {
        background-color: inherit;
    }
}

@-moz-keyframes flashing-bg {
    from {
        background-color: rgba(255, 0, 0, 0.2);
    }

    to {
        background-color: inherit;
    }
}

@-o-keyframes flashing-bg {
    from {
        background-color: rgba(255, 0, 0, 0.2);
    }

    to {
        background-color: inherit;
    }
}

@keyframes flashing-bg {
    from {
        background-color: rgba(255, 0, 0, 0.2);
    }

    to {
        background-color: inherit;
    }
}

.flashing-bg {
    -webkit-animation: flashing-bg 1s infinite; /* Safari 4+ */
    -moz-animation: flashing-bg 1s infinite; /* Fx 5+ */
    -o-animation: flashing-bg 1s infinite; /* Opera 12+ */
    animation: flashing-bg 1s infinite; /* IE 10+ */
}

/******** FLASHING EFFECT ********/

#upl_preview img {
    width: 100%;
}


/*upload multiple image*/

/*.upload__box {
    padding: 40px;
}*/

/*.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}*/

.upload_img-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 33.333333%;
    margin: 0 -10px;
}

.upload_img-box {
    width: 200px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.upload_img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.upload_img-close:after {
    content: "\2716";
    font-size: 14px;
    color: white;
}

.upload-img-bg {
    background-color: #CCCCCC;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

/*display attachment image*/

.slider {
    /*margin: 60px auto;
    max-width: 1200px;*/
    max-width: 100%;
}

.slider {
    flex: 1 1 0;
    /*background-color: whitesmoke;*/
}

.inner {
    padding: 6px;
}

    .inner img {
    /*width: 350px;
    height: 250px;*/
    width: 100%;
    height: auto;
    /*background: #CCCCCC;
    object-fit: contain;
    background-color: #CCCCCC;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #CCCCCC;*/
    }

.inner img:hover {
    opacity: 0.9;
}