﻿.ic-add {
    background: url(../src/ic_add_circle_active.svg);
    background-repeat: no-repeat;
    min-width: 24px;
    min-height: 24px;
}

    .ic-add:disabled {
        background: url(../src/ic_add_circle_deactive.svg);
    }

.ic-remove {
    background: url(../src/ic_minus_circle_active.svg);
    background-repeat: no-repeat;
    min-width: 24px;
    min-height: 24px;
}

    .ic-remove:disabled {
        background: url(../src/ic_minus_circle_deactive.svg);
    }

.booking-input {
    border-bottom: 1px solid #808080;
}

    .booking-input:focus-within {
        border-bottom: 1px solid #4C4DDC;
    }

.input-no-border {
    border: none;
    background: none;
    max-width: fit-content;
    margin-right: 15px;
}

.bottom-border {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid;
}

.bottom-border-active {
    border-bottom: 1px solid #4C4DDC;
}

/*.show-form {
    visibility: visible;
    -moz-animation: show 0.2s ease;
    -o-animation: show 0.2s ease;
    -webkit-animation: show 0.2s ease;
    animation: show 0.2s ease;
}*/

.button-add-more {
    background-color: #F0F3FF;
    border: 2px solid #B1C5F6;
    color: #3267E3;
    height: 50px;
    width: 450px;
    padding: 10px 10px;
    transition: background-color ease 0.2s, color ease 0.5s, width ease 0.5s;
}

    .button-add-more img {
        height: 20px;
        width: 20px;
        background-color: transparent;
        content: url("src/ic_add_circle_active.svg");
    }

    .button-add-more:hover {
        background-color: #3267E3;
        border: 2px solid #114CD6;
        color: white;
        width: 600px;
        transition: background-color ease 0.2s, color ease 0.5s, width ease 0.5s;
    }

        .button-add-more:hover img {
            content: url("src/ic_add_circle_deactive.svg");
        }

    .button-add-more:active {
        background-color: #11317D;
        border: 2px solid #11317D;
        color: white;
        width: 600px;
        transition: background-color ease 0.2s, color ease 0.5s, width ease 0.5s;
    }

        .button-add-more:active img {
            content: url("src/ic_add_circle_deactive.svg");
        }

.hidden-form {
    visibility: collapse;
    animation: hide 0.3s ease;
}

.select-hover:hover {
    -moz-animation: hover 0.3s ease;
    -o-animation: hover 0.3s ease;
    -webkit-animation: hover 0.3s ease;
    animation: hover 0.3s ease;
    background-color: #b2b2b2;
    border-radius: 3px;
}

@keyframes hover {
    from {
        background-color: transparent;
    }

    to {
        background: #b2b2b2;
    }
}

@keyframes show {
    0% {
        opacity: 0;
        transform: translateY(-10%);
        -moz-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
        -o-transform: translateY(-10%);
        -webkit-transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        -webkit-transform: translateY(0%);
    }
}

@keyframes hide {
    0% {
        opacity: 1;
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
        -o-transform: translateY(-10%);
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}


ol > .item-list > li::before {
    content:counter(item) "#";
}

ul.item-list li {
    position: relative;
    margin-bottom: 0;
    list-style: none;
}

    ul.item-list li:after {
        position: absolute;
        content: url(src/ic_vertical_indicator.svg);
        top: -5px;
        left: -31px;
    }

    ul.item-list li:first-child:after {
    }
/*
    ul.item-list li:last-child {
        left:-3px;
        position: relative;
        margin-top:5px;
    }

    ul.item-list li:last-child:after {
        content: url("src/ic_add_circle_active.svg");
        top:0.5px;
        height:20px;
        width:20px;
        align-self:center;
        align-content:center;
    }*/

.grid {
    display: grid;
    grid-row-gap: 10px;
    grid-column-gap: 2px;
    grid-template-columns: auto auto auto;
}

.grid-disabled {
    position: absolute;
    background-color: rgb(0, 0, 0, 0.4);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    animation: colorChange 0.3s ease;
}

@keyframes colorChange {
    from {
        background-color: transparent;
    }

    to {
        background-color: rgb(0, 0, 0, 0.4);
    }
}

.grid-item {
    width: 100%;
    height: 100%;
    max-width: 225px;
    background-color: #F8F9FA;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
}

.grid-item-header {
    display: inline-flex;
    gap: 10px;
    margin-top: 10px;
    margin-left: 25px;
}

.grid-item-icon {
    width: 40px;
    height: 40px;
}

.grid-item-title {
    width: 100%;
    position: relative;
    left: 5%;
}

.grid-item-bottom {
    margin-top: 10px;
    margin-bottom: 10px;
    justify-items: center;
    display: flex;
    justify-content: space-evenly;
}

@media only screen and (max-width: 800px) {
    .grid {
        display: grid;
        grid-row-gap: 10px;
        grid-column-gap: 10px;
        grid-template-columns: 100%;
        justify-content: stretch;
    }
}
