﻿.eIconTD {
    color: green;
}

.eIconDl {
    color: red;
}

.div1 {
    width: 100%;
    height: 400px;
    overflow: scroll;
    border: 1px solid #777777;
}

    .div1 table {
        border-spacing: 0;
    }

    .div1 th {
        /*border-left: none;*/
        border-right: 1px solid #bbbbbb;
        padding: 5px;
        width: 80px;
        min-width: 80px;
        position: sticky;
        top: 0;
        background: #727272;
        color: #e0e0e0;
        font-weight: normal;
    }

    .div1 td {
        /*border-left: none;*/
        border-right: 1px solid #bbbbbb;
        border-bottom: 1px solid #bbbbbb;
        padding: 5px;
        width: 80px;
        min-width: 80px;
    }

        .div1 th:nth-child(1),
        .div1 td:nth-child(1) {
            position: sticky;
            left: 0;
            width: 120px;
            min-width: 120px;
        }

        .div1 th:nth-child(2),
        .div1 td:nth-child(2) {
            position: sticky;
            /* 1st cell left/right padding + 1st cell width + 1st cell left/right border width */
            /* 0 + 5 + 150 + 5 + 1 */
            left: 0px;
            width: 440px;
            min-width: 440px;
        }

        .div1 td:nth-child(1),
        .div1 td:nth-child(2) {
            /*background: #ffebb5;*/
        }

    .div1 th:nth-child(1),
    .div1 th:nth-child(2) {
        z-index: 2;
    }


.input-container {
}

.input-field {
    width: 100%; 
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    font-size: 16px;
    transition: border-bottom-color 0.3s;
}

    .input-field:focus {
        border-bottom-color: #3f51b5;
    }

    .input-field::placeholder {
        color: transparent; /* Hide placeholder text */
    }
.Btn {
    width: 240px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.089);
    cursor: pointer;
    background-color: transparent;
}

.leftContainer {
    width: 60%;
    height: 100%;
    background-color: rgb(0,128,0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .leftContainer .like {
        color: white;
        font-weight: 600;
    }

.likeCount {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0,128,0);
    font-weight: 600;
    position: relative;
    background-color: white;
}

    .likeCount::before {
        height: 8px;
        width: 8px;
        position: absolute;
        content: "";
        background-color: rgb(255, 255, 255);
        transform: rotate(45deg);
        left: -4px;
    }

.Btn:hover .leftContainer {
    background-color: rgb(0,128,0);
}

.Btn:active .leftContainer {
    background-color: rgb(0,128,0);
}

    .Btn:active .leftContainer svg {
        transform: scale(1.15);
        transform-origin: top;
    }

/** SPINNER CREATION **/
.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #2196F3;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
 
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
 
.modal-backdrop.show {
    opacity: 0.75;
}

.loader-txt p {
    font-size: 13px;
    color: #666;
}

    .loader-txt p small {
        font-size: 11.5px;
        color: #999;
    }

#output {
    padding: 25px 15px;
    background: #222;
    border: 1px solid #222;
    max-width: 350px;
    margin: 35px auto;
    font-family: 'Roboto', sans-serif !important;
}

    #output p.subtle {
        color: #555;
        font-style: italic;
        font-family: 'Roboto', sans-serif !important;
    }

    #output h4 {
        font-weight: 300 !important;
        font-size: 1.1em;
        font-family: 'Roboto', sans-serif !important;
    }

    #output p {
        font-family: 'Roboto', sans-serif !important;
        font-size: 0.9em;
    }

        #output p b {
            text-transform: uppercase;
            text-decoration: underline;
        }


.cbicon {
    cursor: pointer;
    background-color: #075D37;
    color: white;
}
 
.sTD2 {
    width: 40%;
    word-wrap: break-word;
}

.has-error {
    border: 1px solid #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.lightRed3 {
    background-color: rgb(247, 228, 225);
    color: black;
}

.selected {
    background-color: #dde5ed;
    color: black;
}

.cbicon {
    cursor: pointer;
    background-color: #1AA83A;
    color: white;
}

.lightWrn {
    background-color: #FFFCC8;
    color: black;
    border: none;
}

.with-padding {
    padding: 1px 2px 1px 20px;
    height: 10px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
    color: black !important;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin: 5px 0 0 6px;
    padding: 0 6px; 
}

.select2-container--bootstrap.select2-container--disabled .select2-selection, .select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
    background-color: #E4E4E4 !important;
}

.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.myScroll {
    max-height: calc(80vh - 150px);
    overflow-y: auto;
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: #00397E #E5E5E5; /* scroll thumb and track */
}


tr.group,
tr.group:hover {
    background-color: #ddd !important;
    cursor: pointer;
}

table.dataTable tr.dtrg-group.dtrg-level-0 td {
    font-weight: bold;
}

table.dataTable tr.dtrg-group td {
    background-color: #e0e0e0;
}

table.dataTable tr.dtrg-group.dtrg-level-1 td:first-child {
    padding-left: 2em;
}

table.dataTable tr.dtrg-group.dtrg-level-1 td {
    background-color: #f0f0f0;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
}

table.dataTable tr.dtrg-group.dtrg-level-2 td:first-child {
    padding-left: 3em;
}

table.dataTable tr.dtrg-group.dtrg-level-2 td {
    background-color: #fff0f0;
}

table.dataTable.compact tbody tr td.order_id {
    padding-left: 4em;
}

.nav-item > a.active {
    font-weight: bold !important;
    color: black !important;
}

.checkbox-wrapper-30 .checkbox {
    --bg: #fff;
    --brdr: #d1d6ee;
    --brdr-actv: #1e2235;
    --brdr-hovr: #bbc1e1;
    --dur: calc((var(--size, 2)/2) * 0.6s);
    display: inline-block;
    width: calc(var(--size, 1) * 22px);
    position: relative;
}

    .checkbox-wrapper-30 .checkbox:after {
        content: "";
        width: 100%;
        padding-top: 100%;
        display: block;
    }

    .checkbox-wrapper-30 .checkbox > * {
        position: absolute;
    }

    .checkbox-wrapper-30 .checkbox input {
        -webkit-appearance: none;
        -moz-appearance: none;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        background-color: var(--bg);
        border-radius: calc(var(--size, 1) * 4px);
        border: calc(var(--newBrdr, var(--size, 1)) * 1px) solid;
        color: var(--newBrdrClr, var(--brdr));
        outline: none;
        margin: 0;
        padding: 0;
        transition: all calc(var(--dur) / 3) linear;
    }

        .checkbox-wrapper-30 .checkbox input:disabled {
            background-color: #E5E5E5 !important;
 
            cursor: not-allowed;
        }

        .checkbox-wrapper-30 .checkbox input:hover,
        .checkbox-wrapper-30 .checkbox input:checked {
            --newBrdr: calc(var(--size, 1) * 2);
        }

        .checkbox-wrapper-30 .checkbox input:hover {
            --newBrdrClr: var(--brdr-hovr);
        }

        .checkbox-wrapper-30 .checkbox input:checked {
            --newBrdrClr: var(--brdr-actv);
            transition-delay: calc(var(--dur) /1.3);
        }

            .checkbox-wrapper-30 .checkbox input:checked + svg {
                --dashArray: 16 93;
                --dashOffset: 109;
            }

    .checkbox-wrapper-30 .checkbox svg {
        fill: none;
        left: 0;
        pointer-events: none;
        stroke: var(--stroke, var(--border-active));
        stroke-dasharray: var(--dashArray, 93);
        stroke-dashoffset: var(--dashOffset, 94);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2px;
        top: 0;
        transition: stroke-dasharray var(--dur), stroke-dashoffset var(--dur);
    }

    .checkbox-wrapper-30 .checkbox svg,
    .checkbox-wrapper-30 .checkbox input {
        display: block;
        height: 100%;
        width: 100%;
    }


/* CSS */
.button-67 {
    align-items: center;
    background: #14b068;
    border: 0;
    border-radius: 8px;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #1d0dca17;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    /*display: flex;*/
    font-family: "Cascadia Code",Consolas,Monaco,"Andale Mono","Ubuntu Mono",monospace;
    font-size: 1rem;
    /*justify-content: center;*/
    line-height: 1.5rem;
    padding: 15px;
    padding-bottom:10px;
    position: relative;
    text-align: left;
    transition: .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: pre;
    width: max-content;
    word-break: normal;
    word-spacing: normal;
}

    .button-67:hover {
        background: #f8f8ff;
        box-shadow: -15px -15px 30px 0 #fff, 15px 15px 30px 0 #1d0dca17;
    }

@media (min-width: 768px) {
    .button-67 {
        padding: 24px;
    }
}

.appstore-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px 10px 12px;
    border: 3px solid rgb(189, 189, 189);
    /*background-color: rgb(15, 15, 15);*/
    border-radius: 15px;
    gap: 5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0px 0px 100px -30px rgb(255, 255, 255);
    width:150px;
    margin:5px;
}

    .appstore-button svg {
        width: 45px;
    }

        .appstore-button svg path {
            fill: white;
            transition: all 0.3s;
        }

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.top-text {
    font-size: 13px;
    font-weight: 600;
}

.bottom-text {
    font-size: 13px;
    font-weight: 600;
}

.appstore-button:hover {
/*    background-color: rgb(236, 236, 236);
    border: 3px solid rgb(138, 138, 138);*/
}

    .appstore-button:hover .button-text {
        /*color: black;*/
    }

    .appstore-button:hover svg path {
        /*fill: black;*/
    }


/*= input focus effects css
=========================== */
:focus {
    outline: none;
}

/* necessary to give position: relative to parent. */
/*input[type="text"] {*/
/*font: 15px/24px "Lato", Arial, sans-serif;*/
/*color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
}*/

.effect-1,
.effect-2,
.effect-3 {
    border: 0;
    /*padding: 7px 0;
    border-bottom: 1px solid #ccc;*/
}

    .effect-1 ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-1:focus ~ .focus-border {
        width: 100%;
        transition: 0.4s;
    }

    .effect-2 ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-2:focus ~ .focus-border {
        width: 100%;
        transition: 0.4s;
        left: 0;
    }

    .effect-3 ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        z-index: 99;
    }

        .effect-3 ~ .focus-border:before,
        .effect-3 ~ .focus-border:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: #3399FF;
            transition: 0.4s;
        }

        .effect-3 ~ .focus-border:after {
            left: auto;
            right: 0;
        }

    .effect-3:focus ~ .focus-border:before,
    .effect-3:focus ~ .focus-border:after {
        width: 50%;
        transition: 0.4s;
    }

.effect-4,
.effect-5,
.effect-6 {
    border: 0;
    padding: 5px 0 7px;
    border: 1px solid transparent;
    border-bottom-color: #ccc;
    transition: 0.4s;
}

    .effect-4:focus,
    .effect-5:focus,
    .effect-6:focus {
        padding: 5px 14px 7px;
        transition: 0.4s;
    }

    .effect-4 ~ .focus-border {
        position: absolute;
        height: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        transition: 0.4s;
        z-index: -1;
    }

    .effect-4:focus ~ .focus-border {
        transition: 0.4s;
        height: 36px;
        border: 2px solid #3399FF;
        z-index: 1;
    }

    .effect-5 ~ .focus-border {
        position: absolute;
        height: 36px;
        bottom: 0;
        left: 0;
        width: 0;
        transition: 0.4s;
    }

    .effect-5:focus ~ .focus-border {
        width: 100%;
        transition: 0.4s;
        border: 2px solid #3399FF;
    }

    .effect-6 ~ .focus-border {
        position: absolute;
        height: 36px;
        bottom: 0;
        right: 0;
        width: 0;
        transition: 0.4s;
    }

    .effect-6:focus ~ .focus-border {
        width: 100%;
        transition: 0.4s;
        border: 2px solid #3399FF;
    }

.effect-7,
.effect-8,
.effect-9 {
    border: 1px solid #ccc;
    padding: 7px 14px 9px;
    transition: 0.4s;
}

    .effect-7 ~ .focus-border:before,
    .effect-7 ~ .focus-border:after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-7 ~ .focus-border:after {
        top: auto;
        bottom: 0;
    }

    .effect-7 ~ .focus-border i:before,
    .effect-7 ~ .focus-border i:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 2px;
        height: 0;
        background-color: #3399FF;
        transition: 0.6s;
    }

    .effect-7 ~ .focus-border i:after {
        left: auto;
        right: 0;
    }

    .effect-7:focus ~ .focus-border:before,
    .effect-7:focus ~ .focus-border:after {
        left: 0;
        width: 100%;
        transition: 0.4s;
    }

    .effect-7:focus ~ .focus-border i:before,
    .effect-7:focus ~ .focus-border i:after {
        top: 0;
        height: 100%;
        transition: 0.6s;
    }

    .effect-8 ~ .focus-border:before,
    .effect-8 ~ .focus-border:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.3s;
    }

    .effect-8 ~ .focus-border:after {
        top: auto;
        bottom: 0;
        left: auto;
        right: 0;
    }

    .effect-8 ~ .focus-border i:before,
    .effect-8 ~ .focus-border i:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-8 ~ .focus-border i:after {
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
    }

    .effect-8:focus ~ .focus-border:before,
    .effect-8:focus ~ .focus-border:after {
        width: 100%;
        transition: 0.3s;
    }

    .effect-8:focus ~ .focus-border i:before,
    .effect-8:focus ~ .focus-border i:after {
        height: 100%;
        transition: 0.4s;
    }

    .effect-9 ~ .focus-border:before,
    .effect-9 ~ .focus-border:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.2s;
        transition-delay: 0.2s;
    }

    .effect-9 ~ .focus-border:after {
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
        transition-delay: 0.6s;
    }

    .effect-9 ~ .focus-border i:before,
    .effect-9 ~ .focus-border i:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        background-color: #3399FF;
        transition: 0.2s;
    }

    .effect-9 ~ .focus-border i:after {
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
        transition-delay: 0.4s;
    }

    .effect-9:focus ~ .focus-border:before,
    .effect-9:focus ~ .focus-border:after {
        width: 100%;
        transition: 0.2s;
        transition-delay: 0.6s;
    }

    .effect-9:focus ~ .focus-border:after {
        transition-delay: 0.2s;
    }

    .effect-9:focus ~ .focus-border i:before,
    .effect-9:focus ~ .focus-border i:after {
        height: 100%;
        transition: 0.2s;
    }

    .effect-9:focus ~ .focus-border i:after {
        transition-delay: 0.4s;
    }

.effect-10,
.effect-11,
.effect-12,
.effect-13,
.effect-14,
.effect-15 {
    border: 0;
    padding: 7px 15px;
    border: 1px solid #ccc;
    position: relative;
    background: transparent;
}

    .effect-10 ~ .focus-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ededed;
        opacity: 0;
        transition: 0.5s;
        z-index: -1;
    }

    .effect-10:focus ~ .focus-bg {
        transition: 0.5s;
        opacity: 1;
    }

    .effect-11 ~ .focus-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background-color: #ededed;
        transition: 0.3s;
        z-index: -1;
    }

    .effect-11:focus ~ .focus-bg {
        transition: 0.3s;
        width: 100%;
    }

    .effect-12 ~ .focus-bg {
        position: absolute;
        left: 50%;
        top: 0;
        width: 0;
        height: 100%;
        background-color: #ededed;
        transition: 0.3s;
        z-index: -1;
    }

    .effect-12:focus ~ .focus-bg {
        transition: 0.3s;
        width: 100%;
        left: 0;
    }

    .effect-13 ~ .focus-bg:before,
    .effect-13 ~ .focus-bg:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background-color: #ededed;
        transition: 0.3s;
        z-index: -1;
    }

    .effect-13:focus ~ .focus-bg:before {
        transition: 0.3s;
        width: 50%;
    }

    .effect-13 ~ .focus-bg:after {
        left: auto;
        right: 0;
    }

    .effect-13:focus ~ .focus-bg:after {
        transition: 0.3s;
        width: 50%;
    }

    .effect-14 ~ .focus-bg:before,
    .effect-14 ~ .focus-bg:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        background-color: #ededed;
        transition: 0.3s;
        z-index: -1;
    }

    .effect-14:focus ~ .focus-bg:before {
        transition: 0.3s;
        width: 50%;
        height: 100%;
    }

    .effect-14 ~ .focus-bg:after {
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
    }

    .effect-14:focus ~ .focus-bg:after {
        transition: 0.3s;
        width: 50%;
        height: 100%;
    }

    .effect-15 ~ .focus-bg:before,
    .effect-15 ~ .focus-bg:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 0;
        height: 0;
        background-color: #ededed;
        transition: 0.3s;
        z-index: -1;
    }

    .effect-15:focus ~ .focus-bg:before {
        transition: 0.3s;
        width: 50%;
        left: 0;
        top: 0;
        height: 100%;
    }

    .effect-15 ~ .focus-bg:after {
        left: auto;
        right: 50%;
        top: auto;
        bottom: 50%;
    }

    .effect-15:focus ~ .focus-bg:after {
        transition: 0.3s;
        width: 50%;
        height: 100%;
        bottom: 0;
        right: 0;
    }


.effect-16,
.effect-17,
.effect-18 {
    border: 0;
    padding: 4px 0;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
}

    .effect-16 ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-16:focus ~ .focus-border,
    .has-content.effect-16 ~ .focus-border {
        width: 100%;
        transition: 0.4s;
    }

    .effect-16 ~ label {
        position: absolute;
        left: 0;
        width: 100%;
        top: 9px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-16:focus ~ label, .has-content.effect-16 ~ label {
        top: -16px;
        font-size: 12px;
        color: #3399FF;
        transition: 0.3s;
    }

    .effect-17 ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-17:focus ~ .focus-border,
    .has-content.effect-17 ~ .focus-border {
        width: 100%;
        transition: 0.4s;
        left: 0;
    }

    .effect-17 ~ label {
        position: absolute;
        left: 0;
        width: 100%;
        top: 9px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-17:focus ~ label, .has-content.effect-17 ~ label {
        top: -16px;
        font-size: 12px;
        color: #3399FF;
        transition: 0.3s;
    }

    .effect-18 ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        z-index: 99;
    }

        .effect-18 ~ .focus-border:before,
        .effect-18 ~ .focus-border:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: #3399FF;
            transition: 0.4s;
        }

        .effect-18 ~ .focus-border:after {
            left: auto;
            right: 0;
        }

    .effect-18:focus ~ .focus-border:before,
    .effect-18:focus ~ .focus-border:after,
    .has-content.effect-18 ~ .focus-border:before,
    .has-content.effect-18 ~ .focus-border:after {
        width: 50%;
        transition: 0.4s;
    }

    .effect-18 ~ label {
        position: absolute;
        left: 0;
        width: 100%;
        top: 9px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-18:focus ~ label, .has-content.effect-18 ~ label {
        top: -16px;
        font-size: 12px;
        color: #3399FF;
        transition: 0.3s;
    }

.effect-19,
.effect-20,
.effect-21 {
    border: 1px solid #ccc;
    padding: 7px 14px;
    transition: 0.4s;
    background: transparent;
}

    .effect-19 ~ .focus-border:before,
    .effect-19 ~ .focus-border:after {
        content: "";
        position: absolute;
        top: -1px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-19 ~ .focus-border:after {
        top: auto;
        bottom: 0;
    }

    .effect-19 ~ .focus-border i:before,
    .effect-19 ~ .focus-border i:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 2px;
        height: 0;
        background-color: #3399FF;
        transition: 0.6s;
    }

    .effect-19 ~ .focus-border i:after {
        left: auto;
        right: 0;
    }

    .effect-19:focus ~ .focus-border:before,
    .effect-19:focus ~ .focus-border:after,
    .has-content.effect-19 ~ .focus-border:before,
    .has-content.effect-19 ~ .focus-border:after {
        left: 0;
        width: 100%;
        transition: 0.4s;
    }

    .effect-19:focus ~ .focus-border i:before,
    .effect-19:focus ~ .focus-border i:after,
    .has-content.effect-19 ~ .focus-border i:before,
    .has-content.effect-19 ~ .focus-border i:after {
        top: -1px;
        height: 100%;
        transition: 0.6s;
    }

    .effect-19 ~ label {
        position: absolute;
        left: 14px;
        width: 100%;
        top: 10px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-19:focus ~ label, .has-content.effect-19 ~ label {
        top: -18px;
        left: 0;
        font-size: 12px;
        color: #3399FF;
        transition: 0.3s;
    }

    .effect-20 ~ .focus-border:before,
    .effect-20 ~ .focus-border:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.3s;
    }

    .effect-20 ~ .focus-border:after {
        top: auto;
        bottom: 0;
        left: auto;
        right: 0;
    }

    .effect-20 ~ .focus-border i:before,
    .effect-20 ~ .focus-border i:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        background-color: #3399FF;
        transition: 0.4s;
    }

    .effect-20 ~ .focus-border i:after {
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
    }

    .effect-20:focus ~ .focus-border:before,
    .effect-20:focus ~ .focus-border:after,
    .has-content.effect-20 ~ .focus-border:before,
    .has-content.effect-20 ~ .focus-border:after {
        width: 100%;
        transition: 0.3s;
    }

    .effect-20:focus ~ .focus-border i:before,
    .effect-20:focus ~ .focus-border i:after,
    .has-content.effect-20 ~ .focus-border i:before,
    .has-content.effect-20 ~ .focus-border i:after {
        height: 100%;
        transition: 0.4s;
    }

    .effect-20 ~ label {
        position: absolute;
        left: 14px;
        width: 100%;
        top: 10px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-20:focus ~ label, .has-content.effect-20 ~ label {
        top: -18px;
        left: 0;
        font-size: 12px;
        color: #3399FF;
        transition: 0.3s;
    }

    .effect-21 ~ .focus-border:before,
    .effect-21 ~ .focus-border:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 2px;
        background-color: #3399FF;
        transition: 0.2s;
        transition-delay: 0.2s;
    }

    .effect-21 ~ .focus-border:after {
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
        transition-delay: 0.6s;
    }

    .effect-21 ~ .focus-border i:before,
    .effect-21 ~ .focus-border i:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        background-color: #3399FF;
        transition: 0.2s;
    }

    .effect-21 ~ .focus-border i:after {
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
        transition-delay: 0.4s;
    }

    .effect-21:focus ~ .focus-border:before,
    .effect-21:focus ~ .focus-border:after,
    .has-content.effect-21 ~ .focus-border:before,
    .has-content.effect-21 ~ .focus-border:after {
        width: 100%;
        transition: 0.2s;
        transition-delay: 0.6s;
    }

    .effect-21:focus ~ .focus-border:after,
    .has-content.effect-21 ~ .focus-border:after {
        transition-delay: 0.2s;
    }

    .effect-21:focus ~ .focus-border i:before,
    .effect-21:focus ~ .focus-border i:after,
    .has-content.effect-21 ~ .focus-border i:before,
    .has-content.effect-21 ~ .focus-border i:after {
        height: 100%;
        transition: 0.2s;
    }

    .effect-21:focus ~ .focus-border i:after,
    .has-conten.effect-21 ~ .focus-border i:after {
        transition-delay: 0.4s;
    }

    .effect-21 ~ label {
        position: absolute;
        left: 14px;
        width: 100%;
        top: 10px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-21:focus ~ label, .has-content.effect-21 ~ label {
        top: -18px;
        left: 0;
        font-size: 12px;
        color: #3399FF;
        transition: 0.3s;
    }

.effect-22,
.effect-23,
.effect-24 {
    border: 0;
    padding: 7px 15px;
    border: 1px solid #ccc;
    position: relative;
    background: transparent;
}

    .effect-22 ~ .focus-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background-color: transparent;
        transition: 0.4s;
        z-index: -1;
    }

    .effect-22:focus ~ .focus-bg,
    .has-content.effect-22 ~ .focus-bg {
        transition: 0.4s;
        width: 100%;
        background-color: #ededed;
    }

    .effect-22 ~ label {
        position: absolute;
        left: 14px;
        width: 100%;
        top: 10px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-22:focus ~ label, .has-content.effect-22 ~ label {
        top: -18px;
        left: 0;
        font-size: 12px;
        color: #333;
        transition: 0.3s;
    }

    .effect-23 ~ .focus-bg:before,
    .effect-23 ~ .focus-bg:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        background-color: #ededed;
        transition: 0.3s;
        z-index: -1;
    }

    .effect-23:focus ~ .focus-bg:before,
    .has-content.effect-23 ~ .focus-bg:before {
        transition: 0.3s;
        width: 50%;
        height: 100%;
    }

    .effect-23 ~ .focus-bg:after {
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
    }

    .effect-23:focus ~ .focus-bg:after,
    .has-content.effect-23 ~ .focus-bg:after {
        transition: 0.3s;
        width: 50%;
        height: 100%;
    }

    .effect-23 ~ label {
        position: absolute;
        left: 14px;
        width: 100%;
        top: 10px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-23:focus ~ label, .has-content.effect-23 ~ label {
        top: -18px;
        left: 0;
        font-size: 12px;
        color: #333;
        transition: 0.3s;
    }

    .effect-24 ~ .focus-bg:before,
    .effect-24 ~ .focus-bg:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 0;
        height: 0;
        background-color: #ededed;
        transition: 0.3s;
        z-index: -1;
    }

    .effect-24:focus ~ .focus-bg:before,
    .has-content.effect-24 ~ .focus-bg:before {
        transition: 0.3s;
        width: 50%;
        left: 0;
        top: 0;
        height: 100%;
    }

    .effect-24 ~ .focus-bg:after {
        left: auto;
        right: 50%;
        top: auto;
        bottom: 50%;
    }

    .effect-24:focus ~ .focus-bg:after,
    .has-content.effect-24 ~ .focus-bg:after {
        transition: 0.3s;
        width: 50%;
        height: 100%;
        bottom: 0;
        right: 0;
    }

    .effect-24 ~ label {
        position: absolute;
        left: 14px;
        width: 100%;
        top: 10px;
        color: #aaa;
        transition: 0.3s;
        z-index: -1;
        letter-spacing: 0.5px;
    }

    .effect-24:focus ~ label, .has-content.effect-24 ~ label {
        top: -18px;
        left: 0;
        font-size: 12px;
        color: #333;
        transition: 0.3s;
    }
/*= input focus effects css End
=============================== */
