/***************************************Variables*******************************************/
:root {
    --primary-color: #cd4d33;
    --secondary-color: #373737;
    --tertiary-color: #707070;
    --quaternary-color: #f6f6f6;
    --quinary-color: #f69581;
    --placeholder-color: #b5b5b5;
    --border-color: #d6d6d6;
    --section2-color: #fff4de;
    --section-color: #eeeeee;
    --pending-color: #ffde5b;
    --facebook-color: #1877f2;
    --active-cards-color: #cd4d330d;
    --dots-color: #cd4d3380;
    --approved-btn-color: #007b4f;
    --font-regular: "BioRhyme regular";
    --font-bold: "BioRhyme Bold";
    --font-segeo: "segeo";
    --transition: all 0.4s ease-in-out;
    --pending-bg-color: #ffde5b1a;
    --rejected-bg-color: #b32c3a1a;
    --approved-bg-color: #3bafb41a;
    --days-bg-color: #8fccb1;
    --approved-color: #acc5bc;
    --cancelled-bg-color: #0000001a;
}

.btn-toggle {
    background-color: transparent;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border: 1px solid var(--tertiary-color);
    border-left: 0px;
    display: inline-block;
    position: relative;
    text-align: center;
    transition: background 600ms ease, color 600ms ease;
    overflow: hidden;
}

input[type="radio"].toggle {
    display: none;
}

input[type="radio"].toggle + label {
    cursor: pointer;
    min-width: 60px;
}

input[type="radio"].toggle + label:hover {
    background: none;
    color: #1a1a1a;
}

input[type="radio"].toggle + label:after {
    background: var(--primary-color);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
    width: 100%;
    z-index: -1;
}

input[type="radio"].toggle.toggle-left + label {
    border-right: 0;
    border-left: 1px solid var(--tertiary-color);
}

input[type="radio"].toggle.toggle-left + label:after {
    left: 100%;
}

input[type="radio"].toggle.toggle-right + label {
    margin-left: -4px;
}

input[type="radio"].toggle.toggle-right + label:after {
    left: -100%;
}

input[type="radio"].toggle:checked + label {
    cursor: default;
    color: #fff;
    transition: color 200ms;
}

input[type="radio"].toggle:checked + label:after {
    left: 0;
}

/***************************************Fonts*******************************************/
@font-face {
    font-family: "BioRhyme regular";
    src: url(../webfonts/BioRhyme-Regular.ttf);
}
@font-face {
    font-family: "BioRhyme ExtraBold";
    src: url(../webfonts/BioRhyme-ExtraBold.ttf);
}

@font-face {
    font-family: "BioRhyme Bold";
    src: url(../webfonts/BioRhyme-Bold.ttf);
}

@font-face {
    font-family: "segeo";
    src: url(../webfonts/seguisb.ttf);
}

.font-segeo {
    font-family: var(--font-segeo) !important;
}

.font-segeo-regular {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.font-regular {
    font-family: var(--font-regular) !important;
}

.font-bold {
    font-family: var(--font-bold) !important;
}

/***************************************Colors*******************************************/

.primary {
    color: var(--primary-color);
}

.primary-bg {
    background-color: var(--primary-color);
}

.resend-code {
    font-size: 11px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: bold;
}

.primary-border {
    border: 1px solid var(--primary-color);
}

.primary-border-bottom {
    border-bottom: 2px solid var(--primary-color);
}

.secondary-border-bottom {
    border-bottom: 2px solid var(--secondary-color) !important;
}

.btn.primary-bg:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.btn.primary:hover {
    background-color: var(--primary-color);
    color: var(--quaternary-color);
    border: 1px solid transparent;
}

.quaternary {
    color: var(--quaternary-color);
}

.btn-approve {
    background-color: var(--approved-btn-color);
}

.approve-color {
    color: var(--approved-btn-color);
}

.quaternary-bg {
    background-color: var(--quaternary-color);
}

.border-placholder-top {
    border-top: 1px solid var(--placeholder-color);
}

.border-placholder-bottom {
    border-bottom: 1px solid var(--placeholder-color);
}

.placeholder {
    color: var(--placeholder-color);
}

.placeholder-bg {
    background-color: var(--placeholder-color);
}

.secondary {
    color: var(--secondary-color);
}

.secondary-border {
    border: 1px solid var(--secondary-color);
}

.secondary-bg {
    background-color: var(--secondary-color);
    color: var(--quaternary-color);
}

.border-secondary {
    border: 1px solid var(--secondary-color);
}

.btn.secondary-bg:hover {
    background-color: var(--quaternary-color);
    color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color);
}

.btn.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--quaternary-color);
    border: 1px solid var(--quaternary-color);
}

.tertiary-bg {
    background-color: var(--tertiary-color);
}

.tertiary {
    color: var(--tertiary-color);
}

.border-tertiary {
    border: 1px solid var(--tertiary-color);
}

.quinary-bg {
    background-color: var(--quinary-color);
}

.quinary {
    color: var(--quinary-color);
}

.section-bg-color {
    background-color: var(--section-color);
}

.section2-bg-color {
    background-color: var(--section2-color);
}

.placeholder-border-color {
    border: 1px solid var(--placeholder-color);
}

.facebook-color {
    color: var(--facebook-color) !important;
}

.facebook-color-bg {
    background-color: var(--facebook-color) !important;
}

/***************************************Radius*******************************************/
.radius-10 {
    border-radius: 10px;
}

.radius-10-right {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.radius-10-left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.radius-20 {
    border-radius: 20px;
}

.radius-45 {
    border-radius: 45px;
}

.radius-50 {
    border-radius: 20px;
}

/***************************************Rates*******************************************/

.rate {
    float: left;
    height: 46px;
}

.rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked) > label:before {
    content: "★ ";
}

.rate > input:checked ~ label {
    color: #cd4d33;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #bd5743;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #da7d6b;
}

/***************************************Rates*******************************************/

/***************************************succesModal*******************************************/

#success .page-body {
    max-width: 300px;
    background-color: #ffffff;
    margin: 10% auto;
}

#success .page-body .head {
    text-align: center;
}

.head h4 {
    color: #1ab394 !important;
}

/* #success .tic{
  font-size:186px;
} */
#success .close {
    opacity: 1;
    position: absolute;
    right: 0px;
    font-size: 30px;
    padding: 3px 15px;
    margin-bottom: 10px;
}

#success .checkmark-circle {
    width: 150px;
    height: 150px;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.checkmark-circle .background {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #1ab394;
    position: absolute;
}

#success .checkmark-circle .checkmark {
    border-radius: 5px;
}

#success .checkmark-circle .checkmark.draw:after {
    -webkit-animation-delay: 300ms;
    -moz-animation-delay: 300ms;
    animation-delay: 300ms;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: checkmark;
    -moz-animation-name: checkmark;
    animation-name: checkmark;
    -webkit-transform: scaleX(-1) rotate(135deg);
    -moz-transform: scaleX(-1) rotate(135deg);
    -ms-transform: scaleX(-1) rotate(135deg);
    -o-transform: scaleX(-1) rotate(135deg);
    transform: scaleX(-1) rotate(135deg);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#success .checkmark-circle .checkmark:after {
    opacity: 1;
    height: 75px;
    width: 37.5px;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    border-right: 15px solid #fff;
    border-top: 15px solid #fff;
    border-radius: 2.5px !important;
    content: "";
    left: 35px;
    top: 80px;
    position: absolute;
}

@-webkit-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }
    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

@-moz-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }
    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }
    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

/***************************************succesModal*******************************************/

/***************************************General*******************************************/
body {
    font-family: var(--font-regular);
    transition: var(--transition);
}

.toast {
    left: 50% !important;
    position: fixed !important;
    transform: translate(-50%, 0px) !important;
    z-index: 9999 !important;
    text-align: center !important;
}

.ltr-otp {
    direction: ltr !important;
}

.rounded-top-left-1 {
    border-top-left-radius: 1rem !important;
}

.rounded-top-right-1 {
    border-top-right-radius: 1rem;
}

.rounded-bottom-left-1 {
    border-bottom-left-radius: 1rem;
}

.rounded-bottom-right-1 {
    border-bottom-right-radius: 1rem;
}

.objectfit-cover {
    object-fit: cover;
}

.cvh-80 {
    height: 60vh;
}



.carousel-control-next,
.carousel-control-prev {
    opacity: 1 !important;
}

.carousel-indicators li {
    background-color: var(--dots-color) !important;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.carousel-indicators li.active {
    background-color: var(--primary-color) !important;
}

.form-shadow {
    box-shadow: 0px 0px 10px var(--rejected-bg-color) !important;
}

.icon-width {
    width: 35px !important;
}

.icon-bar {
    position: absolute;
    top: 85%;
    right: 100px;
    z-index: 999 !important;
}

.icon-bar img {
    width: 5% !important;
}

.icon-bar2 {
    position: absolute;
    bottom: 70px;
    right: 70px;
    z-index: 999 !important;
}

.icon-bar2 img {
    width: 15% !important;
}
.card-active {
    background-color: var(--active-cards-color) !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: none !important;
}

.fa-google {
    background: conic-gradient(
            from -45deg,
            #ea4335 110deg,
            #4285f4 90deg 180deg,
            #34a853 180deg 270deg,
            #fbbc05 270deg
        )
        73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.social-media-input {
    height: 3.3rem !important;
}

.form-width {
    width: 30px !important;
}

.dots {
    color: var(--dots-color) !important;
}

.custom-stack {
    font-size: 0.7em !important;
}
.secondary-placeholder::placeholder {
    color: var(--secondary-color) !important;
}

.form-control::placeholder {
    color: var(--secondary-color) !important;
}

.placeholder-color::placeholder {
    color: var(--placeholder-color) !important;
}

.datepicker::placeholder {
    color: var(--secondary-color) !important;
}

.w-28 {
    width: 28% !important;
}

.height-2em {
    height: 2em !important;
}

.upload-text {
    top: 420px;
    left: 160px;
    z-index: 999 !important;
}

.individual {
    z-index: 999 !important;
}

.steps-cards-padding-y {
    padding-bottom: 1.8rem;
    padding-top: 1.8rem;
}

.underline {
    text-decoration: underline !important;
}

.pointer {
    cursor: pointer;
}

a,
i,
button,
a {
    transition: var(--transition) !important;
}

a:hover {
    color: var(--primary-color);
}

input::placeholder {
    color: var(--placeholder-color) !important;
}

textarea::placeholder {
    /* new*/
    color: var(--placeholder-color) !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.font-text-7 {
    font-size: 0.7em;
}

.font-text-8 {
    font-size: 0.8em;
}

.font-text {
    font-size: 0.9em;
}

.font-text-10 {
    font-size: 1em;
}

.font-text-16 {
    font-size: 1.625em;
}

.font-text-11 {
    font-size: 1.125em;
}

.font-text-18 {
    font-size: 1.875em;
}

.font-text-37 {
    font-size: 3.75em;
}

.big-checkbox {
    width: 24px;
    height: 24px;
}

.hr-line {
    border-top: 2px solid var(--placeholder-color);
}

.pending-badge {
    background-color: var(--pending-bg-color);
    color: var(--pending-color);
}

.rejected-badge {
    background-color: var(--rejected-bg-color);
    color: var(--primary-color);
}

.approved-badge {
    background-color: var(--approved-bg-color);
    color: var(--approved-color);
}

.cancelled-badge {
    background-color: var(--cancelled-bg-color);
    color: var(--secondary-color);
}

.days-badge {
    background-color: var(--days-bg-color);
    color: var(--quaternary-color);
}

.months-badge {
    background-color: var(--quinary-color);
    color: var(--quaternary-color);
}

.border-line {
    border-top: 3px solid var(--border-color);
}

.border-line-end {
    box-shadow: 0px -3px 6px #00000029;
}

.btn-transparent {
    border: 1px solid var(--primary-color);
}

.btn-transparent-form {
    border: 1px solid var(--primary-color);
    width: 200px !important;
}

.select-height {
    height: 49px !important;
}

.btn-transparent-search {
    border: 1px solid var(--primary-color);
    width: 120px !important;
}

.primary-bg-search {
    background-color: var(--primary-color);
    width: 120px !important;
}

.fa-02x {
    font-size: 1.2em !important;
}

.custom-border-right {
    width: 0.2em;
    height: 2em;
    background-color: var(--primary-color);
}

.card-shadow {
    box-shadow: 0px 0px 6px #00000029;
}

.input-height {
    height: 2.7rem !important;
}

.pending-color {
    color: var(--pending-color);
}

/***************************************Header*******************************************/

.vertical-separator {
    height: 35px;
}

.vertical-separator:after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 1px;
    margin: 0 20px;
    background: var(--secondary-color);
    position: relative;
}

.navbar-lg-customized .dropdown-menu {
    left: auto;
    right: 0;
    min-width: 15em;
}

.navbar-lg-customized .dropdown-menu .dropdown-item,
.navbar-sm-customized .dropdown-item {
    border-radius: 10px 0 0 10px;
}

.navbar-lg-customized .dropdown-menu .dropdown-item:hover,
.navbar-sm-customized .dropdown-item:active {
    background: var(--quinary-color) !important;
    color: var(--quaternary-color);
}

.navbar-customized {
    display: none;
}

@media (max-width: 772px) {
    .navbar-sm-customized {
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        z-index: 50;
        background: var(--quaternary-color);
        display: block;
    }

    .font-text {
        font-size: 0.8em !important;
    }

    .font-text-10 {
        font-size: 0.9em !important;
    }

    .font-text-8 {
        font-size: 0.7em !important;
    }

    .font-text-7 {
        font-size: 0.6em !important;
    }

    .font-text-16 {
        font-size: 1.425em;
    }

    .font-text-11 {
        font-size: 1em;
    }

    .font-text-18 {
        font-size: 1.2em;
    }

    .font-text-37 {
        font-size: 3em;
    }

    h3 {
        font-size: 1.3em !important;
    }

    h4 {
        font-size: 1.1em !important;
    }

    .custom-img-fluid {
        max-width: 100%;
    }

    .dropify-wrapper .dropify-message span.file-icon {
        font-size: 20px;
        color: #ccc;
    }

    .dropify-wrapper .dropify-message p {
        font-size: 0px;
        color: #373737;
        margin: 5px 0 0 0;
    }

    [class^="dropify-font-"]:before,
    [class*=" dropify-font-"]:before,
    .dropify-font:before,
    .dropify-wrapper .dropify-message span.file-icon:before {
        background-image: url("../images/Icon\ feather-plus-circle.svg");
        background-repeat: no-repeat;
        display: inline-block;
        text-decoration: inherit;
        width: 2.4em;
        height: 2.4em;
        text-align: center;
        line-height: 1em;
    }

    .dropify-wrapper.touch-fallback .dropify-clear {
        display: none;
    }

    .dropify-wrapper .dropify-preview {
        display: none;
        position: absolute;
        z-index: 1;
        background-color: #fff;
        padding: 5px;
        width: 100%;
        height: 100%;
        top: 22px;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
        text-align: center;
    }

    .w-28 {
        width: 75% !important;
    }
}

/***************************************top carousel section*******************************************/
.top-carousel-holder {
    height: 57vh;
}

.owl-carousel-header .owl-stage-outer,
.owl-carousel-header .owl-stage,
.owl-carousel-header .owl-item {
    height: 100%;
}

i.owl-carousel-header {
    position: absolute;
    top: 38%;
}

i.owl-carousel-header.fa-chevron-left {
    left: 0;
}

i.owl-carousel-header.fa-chevron-right {
    right: 0;
}

.owl-theme .owl-nav [class*="owl-"] {
    color: var(--primary-color);
    font-size: 2em;
    background: transparent;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
    color: var(--primary-color);
}

.owl-carousel .owl-dots {
    position: absolute;
    top: 90%;
    display: block;
    width: 100%;
}

.owl-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
}

.owl-carousel .owl-dot span {
    background: var(--dots-color) !important;
}

.owl-carousel .owl-dot.active span {
    width: 20px;
}

@media (max-width: 776px) {
    .owl-carousel-header .owl-dots {
        top: 85%;
    }

    .custom-img-fluid {
        max-width: 100%;
    }

    .w-28 {
        width: 75% !important;
    }
}

/***************************************animated Tabs***************************************/
.Tabs {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid var(--border-color);
}

.Tabs:after {
    content: " ";
    display: table;
    clear: both;
}

.Tabs li.active {
    border-bottom: 2px solid var(--primary-color);
}

.Tabs li.active a,
.Tabs li a:hover {
    color: var(--primary-color) !important;
}

.Tabs .description_tab {
    float: left;
    text-align: center;
    margin: 0 15px;
}

.Tabs .description_tab:first-of-type {
    margin: 0 15px 0 0;
}

@media (min-width: 1024px) {
    .w-40 {
        width: 40% !important;
    }

    .custom-img-fluid {
        max-width: 100%;
    }

    .dataTables_paginate {
        float: left !important;
    }

    .dataTables_info {
        float: right !important;
        color: var(--tertiary-color) !important;
    }
}

@media (min-width: 1400px) {
    .custom-container {
        padding-left: 205px;
        margin-right: 0px;
        max-width: none;
        overflow: hidden;
        padding-right: 100px;
    }
}

@media (max-width: 1199px) {
    .cvh-80 {
        height: 50vh;
    }
}

@media (min-width: 1200px) {
    .w-60 {
        width: 60%;
    }

    .dataTables_paginate {
        float: left !important;
    }

    .dataTables_info {
        float: right !important;
        color: var(--tertiary-color) !important;
    }

    .row-height {
        /* height: calc(100vh - 5vh); */
        height: 100vh;
        margin-bottom: -25px;
    }

    .step5-margin {
        margin-top: 370px !important;
    }

    .column-height {
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden !important;
    }

    .column-height::-webkit-scrollbar {
        display: none;
    }

    .about-background {
        height: 450px;
        width: 100%;
        background-color: #fff4f2;
    }

    .about-image {
        height: 692px;
    }

    .pending-badge {
        background-color: var(--pending-bg-color);
        color: var(--pending-color);
        width: 75%;
    }

    .rejected-badge {
        background-color: var(--rejected-bg-color);
        color: var(--primary-color);
        width: 75%;
    }

    .approved-badge {
        background-color: var(--approved-bg-color);
        color: var(--approved-color);
        width: 75%;
    }

    .cancelled-badge {
        background-color: var(--cancelled-bg-color);
        color: var(--secondary-color);
        width: 75%;
    }
}

@media (max-width: 776px) {
    .experiences-container .w-25 {
        width: 75% !important;
    }

    .Tabs {
        border-bottom: 0;
    }

    .btn-transparent-search {
        border: 1px solid var(--primary-color);
        width: 90px !important;
    }

    .primary-bg-search {
        background-color: var(--primary-color);
        width: 90px !important;
    }

    .custom-img-fluid {
        max-width: 100%;
    }

    .w-28 {
        width: 75% !important;
    }

    .dataTables_paginate {
        float: none !important;
        text-align: center !important;
    }

    .dataTables_info {
        float: none !important;
        text-align: center !important;
    }
}

/***************************************animated Tabs***************************************/

/***************************************Table***************************************/

.table-border {
    border: 1px solid var(--quaternary-color);
}

.table-shadow {
    box-shadow: 0px 0px 6px #00000029;
}

table.dataTable thead th {
    border-bottom: 0px;
}

table.dataTable.no-footer {
    border-bottom: 0 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: none;
    border: none;
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: none;
    padding: 0 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: none;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: none;
    border: none;
    color: black !important;
    box-sizing: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:focus-visible {
    background: none;
    border: none;
    color: black !important;
    box-sizing: none;
}

/***************************************Table***************************************/

/***************************************footer Tabs***************************************/
footer {
    border-top: 3px solid var(--border-color);
}

.social-media li a {
    width: 35px;
    height: 35px;
}

/***************************************footer Tabs***************************************/

.border-custom:not(:last-child) {
    border-bottom: 2px solid var(--border-color);
}

.custom-select-option {
    padding: 0 10px;
    border-radius: 10px;
    width: 150px;
}

/*override dropify css*/

.dropify-editable {
    display: block;
    position: absolute;
    opacity: 1;
    z-index: 7;
    top: 10px;
    right: 10px;
    background: none;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial";
    font-size: 11px;
    padding: 4px 8px;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.dropify-removable {
    display: block;
    position: absolute;
    opacity: 1;
    z-index: 7;
    top: 10px;
    left: 10px;
    background: none;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial";
    font-size: 11px;
    padding: 4px 8px;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.dropify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #000;
    opacity: 0; */
}

.fitImage {
    object-fit: cover !important;
}
/*end override dropify css*/
