@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css");

.main {

}

/** Progress bar **/
.progress-up-container, .progress-down-container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    color: #fff;
}
.progress-up-background, .progress-down-background{
    background: rgba(25,25,25,0.8);
    width: 100%;
    height: 100%;
}
.progress-up-inner, .progress-down-inner{
    width: 90%;
    height: 200px;
    top: 50%;
    position: absolute;
    right: 5%;
    margin-top: -100px;
}
.progress-up-bar-inner, .progress-down-bar-inner{
    background: #5856d6;
    height: 100%;
    width: 0;
}
.progress-up-bar-outer, .progress-down-bar-outer{
    height: 60px;
    width: 100%;
    background: gray;
    top: 50%;
    position: absolute;
    margin-top: -30px;
}
/** Animated Button **/
.bttn {

    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
}

.bttn:hover {
    color: #FFF;
}

.bttn:focus {
    color: #FFF;
}


.bttn {
    font-size: 16px;
    z-index: 2;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    width: 100%;
    background: inherit;
    border: 3px solid;
    font-weight: bold;
    padding: 7px 0px;
    position: relative;
}

.bttn:before {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    z-index: -2;
}

.bttn:hover:before {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.bttn:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.bttn-green {
    color: #4CAF50;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    border-color: #4CAF50 !important;
}

.bttn-green:hover:before {
    background-color: #4CAF50;
}

.bttn-green:focus:before {
    background-color: #4CAF50;
}

.bttn-blue {
    color: #007AFF;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
    border-color: #007AFF !important;
}

.bttn-blue:hover::before {
    background-color: #007AFF;
}

.bttn-blue:active::before {
    background-color: #007AFF;
}

/** Animated Button End **/

/** Loading Spinner for Buttons **/
.submit.w3-disabled > .btn-load {
    display: inline-block !important;
}

.submit > .btn-load {
    display: none;
}

/** Input Styling **/
.inputGroup {
    background-color: #fff;
    display: block;
    margin: 10px 0;
    position: relative;
}

.inputGroup label {
    padding: 12px 40px;
    width: 100%;
    display: block;
    text-align: left;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
}

.inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.inputGroup label:after {
    width: 32px;
    height: 32px;
    content: '';
    border: 2px solid #D1D7DC;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label {
    color: #3C454C;
}

.inputGroup input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup input:checked ~ label:after {
    background-color: #54E0C7;
    border-color: #54E0C7;
}

.inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.input-error {
    border-color: #e74c3c !important;
}

.input-error + label, .input-error::placeholder {
    color: #e74c3c;

}

.form-error {
    position: relative;
    float: left;
    top: 40px;
}

.q-form input, .q-form select, .q-form textarea {
    background: #f5f7f8;
    color: #000;
    border-bottom-color: #555;
    border-bottom-width: 2px;
    transition: border-color .5s ease;
    border-radius: 0px;
    font-size: 100%;
}

.q-form input::placeholder {

}

.q-form input:focus, .q-form select:focus, .q-form textarea:focus {
    outline: none;
    border-bottom-color: #27ae60;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
}

.file-upload-wrapper:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f7f8;
    border-bottom-color: #555;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 40px;
    line-height: 40px;
    color: #777;
    padding: 0 0 0 7px;
    font-weight: 300;
    border-bottom: 2px solid;
    border-radius: 0;
    border-bottom-color: #555;
}

.file-upload-wrapper:before {
    content: attr(data-btnText);
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 40px;
    background: #4daf7c;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: 40px;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0;
}

.file-upload-wrapper:hover:before {
    background: #3d8c63;
}

.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}


.q-form-outer {
    position: relative;
}

.select-wrapper {
    position: relative;
    width: 100%;
    line-height: 40px;
}

.select-wrapper::before {
    pointer-events: none;
    position: absolute;
    right: 15px;

}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #444;
    border-radius: 0;
    cursor: pointer;
    height: 40px;
    outline: none;
    padding-left: 5px;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    line-height: 40px;
    font-weight: normal;
    border-bottom-width: 2px;
    border-bottom-color: #555;
}


select::-ms-expand {
    display: none;
}

select:focus::-ms-value {
    background-color: transparent;
}

.open-section {

    background: #54E0C7;
    color: #fff;

}
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.inputfile + label {

    display: inline-block;
}

.inputfile:focus + label,
.inputfile + label:hover {

}
.inputfile + label {
    cursor: pointer; /* "hand" cursor */
}
.inputfile:focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}
.inputfile + label * {
    pointer-events: none;
}

/** Crop Picture **/
.preview {
    position: relative;
    min-height: 400px;
    height: 100%;
}

.before-cut {

    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 400px;
    left: 50%;
    margin-left: -50%;
    z-index: 0;
    display: table;

}

.before-cut span, .after-cut span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.after-cut {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 400px;
    opacity: 0.4;
    left: 50%;
    margin-left: -50%;
    z-index: 3;

}

/** end Crop Picture **/


a[href^="http"], a[download] {
    text-decoration: none;
}

a[href^="http"]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: " \f35d ";
    text-decoration: none;
    padding-left: 7px;
}

a[download]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: " \f56d ";
    text-decoration: none;
    padding-left: 7px;
}

/** Success Loader SVG Animation **/

.loader {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 100px;
}

.circular {
    animation: rotate 2s linear forwards;
    width: 100px;
    height: 100px;
    position: relative
}

.path {
    stroke: #007aff;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out forwards,
    color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 150, 200;
        stroke-dashoffset: 10;
    }

}

@keyframes color {
    100%, 0% {
        stroke: #f00;
    }
    40% {
        stroke: #007aff;
    }
    66% {
        stroke: #24555d;
    }
    80%, 90% {
        stroke: #789642;
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;

    animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) 1.5s forwards, color 6s linear infinite;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.suc {
    stroke: #007aff;
    stroke-width: 2;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
}


/** Responsive Table & Header fixed **/
.card{
    position: absolute;
    top: 174px;
    width: calc(100% - 230px);
    min-height: calc(100vh - 230px);
    z-index: 100;
}
.imagesCards .card{
    position: fixed!important;
    top: 0px!important;
}

/**
CSS for slider checkboxes on/off
 */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/**
Site Content > Page Edit Dashboard
 */
#site-content img{
    max-width: 100%;
}