﻿/*-----------------ANIMATIONS---------------------*/
.add-button:not(.button--blocked-circle):hover {
    transform: scale(1.3);
}

    .add-button:not(.button--blocked-circle):hover img {
        animation: add-animation 1s infinite;
    }

.popup-cancel-button:hover {
    transform: scale(1.2);
}

    .popup-cancel-button:hover img {
        animation: add-animation 1s infinite;
    }

.edit-button:not(.button--blocked-circle):hover {
    transform: scale(1.3);
}

    .edit-button:not(.button--blocked-circle):hover img {
        animation: edit-animation 1s infinite;
    }

.download-button:not(.button--blocked-circle):hover {
    transform: scale(1.3);
}

    .download-button:not(.button--blocked-circle):hover img {
        animation: godown 1s infinite;
    }

.upload-button:not(.button--blocked-circle):hover {
    transform: scale(1.3);
}

    .upload-button:not(.button--blocked-circle):hover img {
        animation: goup 1s infinite;
    }

.delete-button:not(.button--blocked-circle):hover {
    transform: scale(1.3);
}

    .delete-button:not(.button--blocked-circle):hover img {
        animation: shake 1s infinite;
    }

.reload-button:hover {
    transform: scale(1.3);
}

    .reload-button:hover img {
        animation: spin 1s infinite;
    }

.pagination-left-button:hover {
    transform: scale(1.3);
}

    .pagination-left-button:hover img {
        animation: goleft 1s infinite;
    }

.pagination-right-button:hover {
    transform: scale(1.3);
}

    .pagination-right-button:hover img {
        animation: goright 1s infinite;
    }

.add-arrow-button,
.remove-arrow-button {
    width: 190px;
    height: 30px;
    padding: 0px 30px;
    justify-content: start;
    margin-bottom: 2px
}

    .remove-arrow-button:hover {
        transform: scale(1.05);
    }

        .remove-arrow-button:hover img {
            animation: goleft 1s infinite;
        }

    .add-arrow-button:hover {
        transform: scale(1.05);
    }

        .add-arrow-button:hover img {
            animation: goright 1s infinite;
        }

@-webkit-keyframes edit-animation {
    0% {
        -webkit-transform: scaleX(0));
    }

    100% {
        -webkit-transform: scaleX(-1);
    }
}

@keyframes edit-animation {
    0% {
        transform: scaleX(0));
    }

    100% {
        transform: scaleX(-1);
    }
}


@-webkit-keyframes add-animation {
    0% {
        -webkit-transform: scale(1));
    }

    100% {
        -webkit-transform: scale(0.5);
    }
}

@keyframes add-animation {
    0% {
        transform: scale(1));
    }

    100% {
        transform: scale(0.5);
    }
}

@keyframes shake {
    0% {
        transform: translate(0.2px, 0.2px) rotate(0deg);
    }

    10% {
        transform: translate(-0.2px, -0.4px) rotate(-1deg);
    }

    20% {
        transform: translate(-0.6px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(0.6px, 0.4px) rotate(0deg);
    }

    40% {
        transform: translate(0.2px, -0.2px) rotate(1deg);
    }

    50% {
        transform: translate(-0.2px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-0.6px, 0.2px) rotate(0deg);
    }

    70% {
        transform: translate(0.6px, 0.2px) rotate(-1deg);
    }

    80% {
        transform: translate(-0.2px, -0.2px) rotate(1deg);
    }

    90% {
        transform: translate(0.2px, 0.4px) rotate(0deg);
    }

    100% {
        transform: translate(0.2px, -0.4px) rotate(-1deg);
    }
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(0.2px, 0.2px) rotate(0deg);
    }

    10% {
        -webkit-transform: translate(-0.2px, -0.4px) rotate(-1deg);
    }

    20% {
        -webkit-transform: translate(-0.6px, 0px) rotate(1deg);
    }

    30% {
        -webkit-transform: translate(0.6px, 0.4px) rotate(0deg);
    }

    40% {
        -webkit-transform: translate(0.2px, -0.2px) rotate(1deg);
    }

    50% {
        -webkit-transform: translate(-0.2px, 2px) rotate(-1deg);
    }

    60% {
        -webkit-transform: translate(-0.6px, 0.2px) rotate(0deg);
    }

    70% {
        -webkit-transform: translate(0.6px, 0.2px) rotate(-1deg);
    }

    80% {
        -webkit-transform: translate(-0.2px, -0.2px) rotate(1deg);
    }

    90% {
        -webkit-transform: translate(0.2px, 0.4px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(0.2px, -0.4px) rotate(-1deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes goright {
    0% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(5px);
    }
}

@-webkit-keyframes goright {
    0% {
        -webkit-transform: translateX(-5px);
    }

    100% {
        -webkit-transform: translateX(5px);
    }
}

@keyframes goleft {
    0% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(-5px);
    }
}

@-webkit-keyframes goleft {
    0% {
        -webkit-transform: translateX(5px);
    }

    100% {
        -webkit-transform: translateX(-5px);
    }
}

@keyframes godown {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(5px);
    }
}

@-webkit-keyframes godown {
    0% {
        -webkit-transform: translateY(-5px);
    }

    100% {
        -webkit-transform: translateY(5px);
    }
}

@keyframes goup {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

@-webkit-keyframes goup {
    0% {
        -webkit-transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(-5px);
    }
}

/******************** 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: #7fdf16;
}

    .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 ********************/


/******************** Switch Medium ********************/

.switch-input-wrapper-md {
    cursor: pointer;
    height: 25px;
}

    .switch-input-wrapper-md label {
        display: inline-block;
        position: relative;
        height: 25px;
        width: 50px;
        background-color: #fb1919;
        cursor: pointer;
        font-size: 0;
        color: transparent;
        border-radius: 22px;
        transition: background-color 500ms ease;
    }

        .switch-input-wrapper-md label:after {
            content: '';
            display: block;
            height: 21px;
            width: 21px;
            position: absolute;
            top: 2px;
            right: 24px;
            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-md input:checked + label {
        background: #7fdf16;
    }

        .switch-input-wrapper-md input:checked + label:after {
            right: 2px;
            background-color: #fff;
            box-shadow: -2px 0px 0px rgba(0, 0, 0, 0.1);
        }

    .switch-input-wrapper-md input {
        position: absolute !important;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        bottom: 0;
    }

.switch-input-box-md label {
    line-height: 44px;
    vertical-align: middle;
}

.switch-input-wrapper-md span {
    position: relative;
    top: -49px;
    left: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #095a55;
    font-weight: 500;
}
/******************** Switch Medium ********************/

/******************** 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);
}

.select-content-show-up {
    transform: scaleY(1);
    translate: 0px -350px;
}

.select-options {
    font-size: 20px;
    margin: 0px;
    height: calc(100% - 40px);
    overflow-y: scroll;
}

    .select-options li {
        padding: 15px 5px;
        cursor: pointer;
    }

        .select-options li:hover {
            background-color: #bfe8e7;
            box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
        }

.select-search {
    height: 40px !important;
    border-radius: 22px !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #76c6c7 !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    color: #060000 !important;
    padding-left: 20px !important;
    padding-right: 50px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-family: "Montserrat", sans-serif !important;
}

.select-freeze-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*height: calc(100vh - 40px);*/
    z-index: 99;
}
/******************** Popup ********************/

/******************** blazored-toast ********************/
.blazored-toast-container {
    z-index: 9999 !important;
}
/******************** blazored-toast ********************/

.border-bottom-teal {
    border-bottom: 1px solid #069c9e;
}

/******************** side menu new ********************/
.aside-menu__list-new a {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /*margin-bottom: 5px;*/
    cursor: pointer;
    position: relative;
}

.aside-menu__list-new {
    margin-bottom: 0px !important;
}

    .aside-menu__list-new li {
        padding-bottom: 5px !important;
    }

    .aside-menu__list-new a span {
        position: absolute;
        font-size: 9px;
        color: #fff;
        bottom: 6px;
        font-weight: 500;
        transition: 0.25s;
        text-transform: uppercase;
        transform: scale(0);
    }

    .aside-menu__list-new li:hover a span {
        transform: scale(1);
    }

    .aside-menu__list-new img {
        position: relative;
        line-height: 65px;
        transition: 0.5s;
        width: 50px;
        transform: translateY(6px);
    }

    .aside-menu__list-new li:hover a img {
        width: 40px;
        transform: translateY(-6px);
    }

/**PRIJEM**/
.indicator-aside-menu-green {
    position: absolute;
    top: 10px;
    left: 3px;
    width: 54px;
    height: 54px;
    border-radius: 10px;
    transition: 0.5s;
}

.aside-menu__list-new li:nth-child(1):hover ~ .indicator-aside-menu-green {
    background: #2aa75ac4;
    box-shadow: 0 5px 15px #00a75599;
    transform: translateY(calc(59px * 0));
}

.aside-menu__list-new li:nth-child(2):hover ~ .indicator-aside-menu-green {
    background: #2aa75ac4;
    box-shadow: 0 5px 15px #00a75599;
    transform: translateY(calc(59px * 1));
}

.aside-menu__list-new li:nth-child(3):hover ~ .indicator-aside-menu-green {
    background: #2aa75ac4;
    box-shadow: 0 5px 15px #00a75599;
    transform: translateY(calc(59px * 2));
}

.aside-menu__list-new li:nth-child(4):hover ~ .indicator-aside-menu-green {
    background: #2aa75ac4;
    box-shadow: 0 5px 15px #00a75599;
    transform: translateY(calc(59px * 3));
}

.aside-menu__list-new li:nth-child(5):hover ~ .indicator-aside-menu-green {
    background: #2aa75ac4;
    box-shadow: 0 5px 15px #00a75599;
    transform: translateY(calc(59px * 4));
}

.aside-menu__list-new a.is-active-green {
    background: #2aa75ac4;
}

    .aside-menu__list-new a.is-active-green span {
        transform: scale(1);
    }

    .aside-menu__list-new a.is-active-green img {
        width: 40px;
        transform: translateY(-6px);
    }

/**KARTOTEKA**/
.indicator-aside-menu-basic {
    position: absolute;
    top: 10px;
    left: 3px;
    width: 54px;
    height: 54px;
    border-radius: 10px;
    transition: 0.5s;
}

.aside-menu__list-new li:nth-child(1):hover ~ .indicator-aside-menu-basic {
    background: #ff000a;
    box-shadow: 0 5px 15px #cc0007;
    transform: translateY(calc(59px * 0));
}

.aside-menu__list-new li:nth-child(2):hover ~ .indicator-aside-menu-basic {
    background: #ff000a;
    box-shadow: 0 5px 15px #cc0007;
    transform: translateY(calc(59px * 1));
}

.aside-menu__list-new li:nth-child(3):hover ~ .indicator-aside-menu-basic {
    background: #ff000a;
    box-shadow: 0 5px 15px #cc0007;
    transform: translateY(calc(59px * 2));
}

.aside-menu__list-new li:nth-child(4):hover ~ .indicator-aside-menu-basic {
    background: #ff000a;
    box-shadow: 0 5px 15px #cc0007;
    transform: translateY(calc(59px * 3));
}

.aside-menu__list-new li:nth-child(5):hover ~ .indicator-aside-menu-basic {
    background: #ff000a;
    box-shadow: 0 5px 15px #cc0007;
    transform: translateY(calc(59px * 4));
}

.aside-menu__list-new a.is-active-basic {
    background: #ff000a;
}

    .aside-menu__list-new a.is-active-basic span {
        transform: scale(1);
    }

    .aside-menu__list-new a.is-active-basic img {
        width: 40px;
        transform: translateY(-6px);
    }

/******************** side menu new ********************/

/******************** basic search input ********************/
.search-cancel-icon {
    position: absolute;
    transform: translate(0, -50%);
    right: 10px;
    top: 50%;
    cursor: pointer;
    width: 20px;
}

.search-cancel:hover img {
    top: 20%;
    animation: spin 1s infinite;
}
/******************** basic search input ********************/

/******************** header text button ********************/
.header-text-button {
    width: 300px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #069c9e;
    text-decoration: none;
    height: 25px;
}

    .header-text-button img {
        height: 60%;
        width: auto;
    }

.header-text-button-reload:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #4f8685;
}

    .header-text-button-reload:hover img {
        animation: spin 1s infinite;
    }

.header-text-button-upload:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #4f8685;
}

    .header-text-button-upload:hover img {
        animation: goup 1s infinite;
    }

.header-text-button-red {
    width: 300px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #e50000;
    text-decoration: none;
    height: 25px;
}

    .header-text-button-red img {
        height: 60%;
        width: auto;
    }

.header-text-button-red-reload:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #4f8685;
}

    .header-text-button-red-reload:hover img {
        animation: spin 1s infinite;
    }

.header-text-button-red-upload:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #4f8685;
}

    .header-text-button-red-upload:hover img {
        animation: goup 1s infinite;
    }

.header-text-button-blocked {
    width: 300px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #bdbdbd;
    text-decoration: none;
    height: 25px;
}

    .header-text-button-blocked img {
        height: 60%;
        width: auto;
    }

.header-text-button-blocked-reload:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #4f8685;
}

    .header-text-button-blocked-reload:hover img {
        animation: spin 1s infinite;
    }

.header-text-button-blocked-upload:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #4f8685;
}

    .header-text-button-blocked-upload:hover img {
        animation: goup 1s infinite;
    }
/******************** header text button ********************/

/******************** 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;
}
/******************** pagination ********************/

/******************** Google Map ********************/
.mapouter {
    position: relative;
    text-align: right;
    height: 100%;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 100%;
    width: 100%;
}
/******************** Google Map ********************/

/******************** Input With Checkbox ********************/
.input-checkbox-container {
    position: relative;
}

    .input-checkbox-container img {
        position: absolute;
        width: 25px;
        cursor: pointer;
    }

    .input-checkbox-container input {
        width: calc(100% - 30px);
        resize: none;
        padding: 1px 5px;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        border: none;
        outline: none;
        border-bottom: 1px solid #777;
        margin-left: 30px;
    }

    .input-checkbox-container span {
        position: absolute;
        left: 0;
        padding: 2px 0;
        pointer-events: none;
        font-size: 18px;
        font-weight: 300;
        transition: 0.3s;
        transform: translateY(-15px);
        font-size: 12px;
        letter-spacing: 1px;
        color: #095a55;
        font-weight: 500;
    }
/******************** Input With Checkbox ********************/

/******************** PDF ********************/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/******************** PDF ********************/
