﻿.clickable {
    cursor: pointer;
    font-style: oblique;
    text-decoration: underline;
}
.clickable:hover {
    text-decoration: none;
    color: blue;
}
.side-by-side {
    display: flex;
}
.primary-btn {
    /* Auto layout */

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    /*position: absolute;*/
    /*width: 122px;*/
    height: 44px;
    left: 408px;
    top: 40px;
    min-height: 50px;
    /* Primary Navy blue */

    color: var(--font-secondary-color);
    background: var(--primary-color);
    border-radius: 8px;
}
    .primary-btn:active {
        background-color: var(--secondary-color);
        cursor: not-allowed;
    }

.primary-btn label, .primary-btn a {
    width: 66px;
    height: 26px;
    /* Space, 20, Bold */

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    /* identical to box height */
    /* Basic/White */

    color: var(--font-white-color);
    /* Inside auto layout */

    flex: none;
    order: 2;
    flex-grow: 0;
}

.primary-btn .plus {
    position: absolute;
    width: 0px;
    height: 16px;
    left: 32px;
    top: 22px;
    border: 3px solid var(--boarder-color);
    transform: rotate(90deg);
}

input, textarea {
    box-sizing: border-box;
    background: var(--background-secondary-color);
    border: 1px solid var(--boarder-color);
    /* Inside auto layout */

    flex: none;
    order: 0;
    flex-grow: 0;
}

input {
    width: 464px;
    height: 42px;
    border-radius: 10px;
}

textarea {
    width: 430px;
    height: 156px;
    /*border-radius: 20px;*/
}

.curved-boarder-20 {
    border-radius: 20px;
}
.delete {
    background-image: url('../icon/delete.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 3vw;
    height: 3vw;
}

.search-icon {
    box-sizing: border-box;
    position: relative;
    width: 21.99px;
    height: 22.41px;
    left: 12px;
    top: 10px;
    border: 2px solid #000080;
    border-radius: 50%;
}
.search-icon-holder {
    position: relative;
    width: 8px;
    height: 4px;
    left: 9px;
    top: 31px;
    border: 3px solid #000080;
    rotate: 45deg;
}
.add-icon {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    position: relative;
}

    .add-icon::after {
        content: " ";
        position: absolute;
        display: block;
        background-color: #fff;
        height: 4px;
        margin-top: -5px;
        top: 63%;
        left: 1px;
        right: 6px;
        z-index: 9;
    }

    .add-icon::before {
        content: " ";
        position: absolute;
        display: block;
        background-color: #fff;
        width: 4px;
        margin-left: -5px;
        left: 51%;
        top: 4px;
        bottom: 4px;
        z-index: 9;
    }
.arrow-icon {
    border: solid var(--primary-color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 8px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.bearier {
    position: relative;
    width: 80%;
    height: 0px;
    margin: 5px auto;
    /* Seconday blue color */

    border: 1.5px solid #CFE5F3;
}

/*input[type="date"]::-webkit-datetime-edit, input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button, input[type="datetime-local"]::-webkit-datetime-edit, input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-clear-button {*/
    /*color: white;*/
    /*position: relative;
    font-size: 1rem;
}

input[type="date"]::-webkit-datetime-edit-month-field, input[type="datetime-local"]::-webkit-datetime-edit-month-field {
    position: absolute !important;
    border-left: 1px dotted black;
    padding: 2px;
    padding-left: 4px;
    left: 26px;
    color: black;
}

input[type="date"]::-webkit-datetime-edit-year-field, input[type="datetime-local"]::-webkit-datetime-edit-year-field {
    position: absolute !important;
    border-left: 1px dotted black;
    padding: 2px;
    left: 52px;
    color: black;
}

input[type="date"]::-webkit-datetime-edit-day-field, input[type="datetime-local"]::-webkit-datetime-edit-day-field {
    position: absolute !important;
    padding: 2px;
    left: 4px;
    color: black;
}
input[type="datetime-local"]::-webkit-datetime-edit-hour-field {*/
    /*position: absolute !important;
    padding: 2px;
    left: 4px;*/
    /*color: black;
}*/

/* ANIMATIONS */
/* GRAGIENT */
.animation-gradient {
    visibility: hidden;
    text-transform: uppercase;
    /*background-image: linear-gradient( -225deg, #A0522D 0%, #D2691E 29%, #FFD700 67%, #EEE8AA 100% );*/
    background-image: linear-gradient( -225deg, #EEE8AA 0%, #D2691E 29%, #FFD700 67%, #A0522D 100% );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 0.5em;
    font-weight: bolder;
    white-space: nowrap;
}
@keyframes textclip {
    to {
        background-position: -200% center;
    }
}

/* WATER */
.animation-water {
    position: relative;
}

    .animation-water h2 {
        color: var(--primary-color);
        font-size: 2em;
        position: absolute;
        /*transform: translate(-50%, -50%);*/
    }

        .animation-water h2:nth-child(1) {
            margin-top: 10px;
            margin-left: 35px;
            color: transparent;
            -webkit-text-stroke: 2px var(--primary-color);
        }

        .animation-water h2:nth-child(2) {
            margin-top: 10px;
            margin-left: 35px;
            color: var(--secondary-color);
            animation: animate 4s ease-in-out infinite;
        }
@keyframes animate {
    0%, 100% {
        clip-path: polygon( 0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100% );
    }

    50% {
        clip-path: polygon( 0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100% );
    }
}

/* WAVIY */
.waviy {
    position: relative;
    visibility: hidden;
}

    .waviy span {
        font-size: 0.6em;
        position: relative;
        display: inline-block;
        color: var(--primary-color);
        text-transform: uppercase;
        animation: flip 4s infinite;
        animation-delay: calc(.4s * var(--i))
    }

@keyframes flip {
    0%,80% {
        transform: rotateY(360deg)
    }
}

/* LOADER */
.loader,
.loader:before,
.loader:after {
    width: 10px; /* update this to control the size */
    aspect-ratio: .5;
    display: grid;
    background: radial-gradient(var(--primary-color) 30%,transparent 72%) center/100% 50% no-repeat;
    animation: load 1.2s infinite linear calc(var(--_s,0)*.4s);
    transform: translate(calc(var(--_s,0)*150%));
}

    .loader:before,
    .loader:after {
        content: "";
        grid-area: 1/1;
    }

    .loader:before {
        --_s: -1
    }

    .loader:after {
        --_s: 1
    }

@keyframes load {
    20% {
        background-position: top
    }

    40% {
        background-position: bottom
    }

    60% {
        background-position: center
    }
}
@media (max-width: 641px) {
    .page {
        padding-bottom: 150%;
    }

.delete {

    width: 6vw;
    height: 6vw;
}
}
/*body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-content: center;
}*/