﻿

.img-size-64,
.img-size-50,
.img-size-32,
.img-size-18 {
    height: auto;
}

.img-size-64 {
    width: 64px;
}

.img-size-50 {
    width: 50px;
}

.img-size-32 {
    width: 32px;
}

.img-size-18 {
    width: 18px;
}

.img-size-40 {
    width: 40px;
}

.cursor-pointer {
    cursor: pointer !important;
}


/*---------------Loader---------------*/
.spinner-container {
    width: 100%;
    margin: 30px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #299d9e;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}


.cursor-pointer {
    cursor: pointer !important;
}


.table tr.blue-row td {
    /*font-weight: 500;*/
    background-color: #EDAD51;
    /*color: white;*/
}

.table tbody tr.blue-row {
    /*transform: scale(1.01);*/
    /*box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);*/
}



/*---------------SweetAlert---------------*/
.swal2-container {
    z-index: 9999 !important;
}
/*---------------SweetAlert---------------*/


/******************** blazored-toast ********************/
.blazored-toast-container {
    z-index: 9999 !important;
}
/******************** blazored-toast ********************/

.border-bottom-teal {
    border-bottom: 1px solid #069c9e;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.h-30 {
    height: 30%;
}

.h-40 {
    height: 40%;
}

.h-50 {
    height: 50%;
}

.h-60 {
    height: 60%;
}

.w-25-px {
    width: 25px;
}

.w-30-px {
    width: 30px;
}

.h-25-px {
    height: 25px;
}

.w-20-px {
    width: 20px;
}

.h-20-px {
    height: 20px;
}

.w-15-px {
    width: 15px;
}

.h-15-px {
    height: 15px;
}


.table--vessels .line--white {
    background-color: white;
    border-color: black;
    border: solid;
    border-width: thin;
}

.table--left-border {
    border-left: 3px solid #6d6c6c;
}

.chat-right {
    background-color: lightgray;
    border-radius: 8px;
    padding: 10px;
    width: auto;
    max-width: 70%;
    text-align: right;
}

.chat-left {
    background-color: lightcyan;
    border-radius: 8px;
    padding: 10px;
    width: auto;
    max-width: 70%;
    text-align: left;
}

.border-black {
    border-color: black;
    border: solid;
    border-width: thin;
}

.selected-row {
    background-color: #EDAD51!important;
}

.selected-row-text {
    color: #f3f3f3 !important;
    background-color: #408dfb;
    border-radius: 8px;
    padding: 10px;
    font-size: 17px !important;
}

.li-selected-row-text {
    position: sticky;
    top: 0;
}

/*---------------Pagination---------------*/

.pagination-select {
    border-radius: 22px;
    background-color: #f5f5f5;
    border: 1px solid #76c6c7;
    height: 30px;
    text-align: center;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
    margin: 2px;
}

.number-wrapper {
    height: 30px;
    border-radius: 22px;
    color: #444444;
    background-color: #d8d8d9;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 14px;
    white-space: nowrap;
    margin: 2px;
}

.button--blue-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    min-width: 25px;
    width: 25px;
    text-decoration: none;
    background-color: #408dfb;
    border-radius: 50%;
    margin: 2px;
}

    .button--blue-circle:not(:disabled):hover, .button--blue-circle:not(:disabled):focus, .button--blue-circle:not(:disabled):active {
        background-color: #265291;
    }

    .button--blue-circle img {
        height: 60%;
        width: auto;
    }

/*---------------Pagination---------------*/


.select {
    /*width: 100%;*/
    border: 1px solid #D9D9D9;
    border-radius: 8px !important;
    font-size: 14px !important;
    height: 32px;
}

select:focus {
    border: 1px solid black !important;
}


/******************** Switch ********************/
.switch-input-wrapper label {
    display: inline-block;
    position: relative;
    height: 30px;
    width: 60px;
    background-color: #fb1919;
    cursor: pointer;
    font-size: 0;
    color: transparent;
    border-radius: 22px;
    transition: background-color 500ms ease;
}

    .switch-input-wrapper label:after {
        content: '';
        display: block;
        height: 26px;
        width: 26px;
        position: absolute;
        top: 2px;
        right: 32px;
        border-radius: 50%;
        background-color: #e8e8e8;
        box-shadow: 2px 0px 0px rgba(0, 0, 0, 0.15);
        transition: right 500ms ease, background-color 500ms ease, box-shadow 500ms ease;
    }

.switch-input-wrapper input:checked + label {
    background: #408dfb;
}

    .switch-input-wrapper input:checked + label:after {
        right: 2px;
        background-color: #fff;
        box-shadow: -2px 0px 0px rgba(0, 0, 0, 0.1);
    }

.switch-input-wrapper input {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    bottom: 0;
}

.switch-input-box label {
    line-height: 44px;
    vertical-align: middle;
}

.switch-input-wrapper span {
    position: relative;
    top: -46px;
    left: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #095a55;
    font-weight: 500;
}

.switch-input-wrapper {
    cursor: pointer;
    height: 32px;
}
/******************** Switch ********************/
/*---------------AUDIT---------------*/
/*---------------Calendar-----------*/
.audit-calendar-header {
    width: 100%;
    margin-top: auto;
    margin-bottom: 5px;
    color: #fff;
}

.audit-calendar-header-row {
    display: flex;
    align-items: center;
    justify-content: start;
}

.audit-dates {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: auto;
}

.audit-lightblue-text {
    color: #abdedf;
}

.audit-lightred-text {
    color: #e41f1f;
}

.audit-sunday-text-color {
    color: #f17373;
    cursor: default !important;
}

    .audit-sunday-text-color:hover {
        background-color: transparent !important;
        color: #f17373 !important;
    }

.audit-border-verified {
    border: 1px solid #de1414;
}

.audit-border-completed {
    border: 1px solid #0bbb46;
}

.audit-border-nc {
    border: 1px solid #BB0000;
}

.audit-current-date-background {
    background-color: #299d9e;
}

.audit-w-10-center-center {
    width: 10%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.audit-day-wrapper {
    width: 10%;
    height: calc((100vw - 80px) * 0.3 *0.07);
    align-items: center;
    justify-content: center;
    display: flex;
    box-sizing: border-box;
}

.audit-day-cell {
    width: 90%;
    height: 90%;
    text-align: center;
    box-sizing: border-box;
    border-radius: 60%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 2px;
    cursor: pointer;
}

    .audit-day-cell:hover {
        background-color: #8eadbd;
        color: #5ec8c9; /* #cf571d;*/
    }

    .audit-day-cell span {
        height: 16px;
        line-height: 16px;
    }

.audit-month-year {
    font-size: 28px;
    color: #000;
    margin: auto;
    cursor: pointer;
}

    .audit-month-year:hover {
        color: #5ec8c9;
    }
/*---------------!Calendar-----------*/
/*---------------Calendar picker-----------*/
.audit-calendar-picker-freeze-layer {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 56, 58, 0.57);
    z-index: 9001;
    overflow-y: auto;
    cursor: pointer;
}

.audit-calendar-picker-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9001;
}

.audit-calendar-picker-card {
    border-radius: 10px !important;
    position: relative;
    top: 30%;
    width: 250px;
    z-index: 9010;
    margin-right: auto !important;
    margin-left: auto !important;
    background-color: #121212db !important;
}

.audit-calendar-picker-card-body {
    width: 70%;
    margin: auto;
    padding: 5px;
}
/*---------------!Calendar picker-----------*/
/*---------------AUDIT---------------*/
/******************** Popup ********************/
.select-content {
    position: absolute;
    width: 100%;
    padding: 5px;
    height: 300px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #6660;
    box-shadow: 7px 10px 18px 0px rgba(150,150,150,0.79);
    z-index: 100;
    transition: all .5s ease-in-out;
    transform-origin: left top;
    transform: scaleY(0);
}

.select-content-show {
    transform: scaleY(1);
}
/******************** Popup ********************/


.input-group-addon {
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/*---------------!Popup-----------*/

/*---------------Signature-----------*/
.button-clear-signature {
    border-radius: 10px;
    background: #fb1c1c;
    border: 1px solid #b34040;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    cursor: pointer;
}
/*---------------!Signature-----------*/

/*---------------Popup-----------*/
.popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

    .popup.is-active {
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }

        .popup.is-active .close-popup {
            visibility: visible;
            opacity: 1;
        }

        .popup.is-active .popup__content {
            transform: translate(0, 0);
        }

    .popup.popup--big .close-popup {
        left: 95% /*20px*/;
    }

    .popup.popup--big .popup__content {
        max-width: 95% /*1825px*/;
    }

.popup__overlay {
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.close-popup {
    position: absolute;
    left: 856px;
    top: 0;
    transform: translate(-60%, 50%);
    z-index: 10;
    transition: background-color 0.3s ease, visibility .3s ease .5s, opacity .3s ease .5s;
    visibility: hidden;
    opacity: 0;
}

.popup__content {
    position: absolute;
    left: 0;
    top: 10px;
    z-index: 2;
    height: calc(100% - 20px);
    width: 100%;
    max-width: 856px;
    background-color: #f1f1f1;
    border: 1px solid #3aadae;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: auto;
    transition: all 0.3s ease .5s;
    transform: translate(-100%, 0);
}
    /*.popup__content .cart {
    margin-bottom: 10px; }*/
    .popup__content .cart__body {
        /* border-top: 1px solid #069c9e;
    padding: 15px 15px 0;
    margin-top: 10px;*/
    }

    .popup__content .cart__footer {
        /*  border-top: 1px solid #069c9e;
    padding: 15px 15px 0;
    margin-top: 10px; */
    }

    .popup__content .cart--accordion .cart__header a {
        display: block;
        width: 100%;
        text-decoration: none;
        position: relative;
    }

    .popup__content .cart--accordion .cart__header img {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
        transition: all .3s ease;
    }

    .popup__content .cart--accordion .cart__header.is-active img {
        transform: translate(0, -50%) rotate(180deg);
    }


.button--red-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    min-width: 25px;
    width: 25px;
    text-decoration: none;
    background-color: #e50000;
    border-radius: 50%;
}

    .button--red-circle:not(:disabled):hover, .button--red-circle:not(:disabled):focus, .button--red-circle:not(:disabled):active {
        background-color: #740000;
    }

    .button--red-circle img {
        height: 60%;
        width: auto;
    }

.cart__header {
    margin: 0px 10px;
}

.cart__body {
    padding: 0px 10px;
}

/*---------------!Popup-----------*/

