@charset "UTF-8";
::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #00a6eb;
}

::-webkit-scrollbar-thumb {
    background: #3979b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    outline: none !important;
    /*border: 0px solid #719ECE;*/
    box-shadow: 0 0 10px #719ECE;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -0px 0 #ddd;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

*:not(input):not(select):not(code):not(textarea):not([contenteditable]) {
    webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.section-divider {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 60px;
    height: 3px;
    background-color: #00b9cd;
    border-radius: 0px;
}
.giftCard-searchBar .overlay {
    background-color: var(--primary-color);
    padding-top: 12px;
    padding-bottom: 0px;
    border-bottom: 1px solid #ecefed;
}

/*----* Component: Form* -----------------*/

.form-control, .form-select {
    border-radius:12px;
    border-width:2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--black-color);    
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.0);
}

.form-control, .form-select, .input-group-text {
    border-color: #e1e1e1;
    border-width:2px;
}
.form-floating > label{
    /*font-size:16px;
    line-height:23px;*/
}
.form-floating > label::after {
    background:transparent!important;
}

.bg-light-grey {
    background-color: var(--lightgrey-color);
}
/*----* Component: List* -----------------*/
.list ul {

}
.list ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
/*----* Cookie:Alert* -----------------*/
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

    .cookiealert.show {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

    .cookiealert a {
        text-decoration: underline
    }

    .cookiealert .acceptcookies {
        margin-left: 10px;
        vertical-align: baseline;
    }
/*----* Component: Button* -----------------*/
.btn {  
    padding-left: 20px;
    padding-right: 20px;
}
    
    .btn.uppercase {
        text-transform: uppercase;
    }

    .btn.btn-flat {
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-width: 1px;
    }

    .btn:active {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn:focus {
        outline: none;
    }

    .btn.btn-file {
        position: relative;
        overflow: hidden;
    }

        .btn.btn-file > input[type='file'] {
            position: absolute;
            top: 0;
            right: 0;
            min-width: 100%;
            min-height: 100%;
            font-size: 100px;
            text-align: right;
            opacity: 0;
            filter: alpha(opacity=0);
            outline: none;
            background: white;
            cursor: inherit;
            display: block;
        }

    .btn.btn-shadow {
        /*-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .16);
        box-shadow: 0 0 20px rgba(0, 0, 0, .16);*/
        -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
    }

.btn-curved {
    border-radius: 10px;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

    .btn-outline-white:hover,
    .btn-outline-white:focus {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color);
        color: #fff;
    }
.btn-outline-black {
    background-color: transparent;
    border-color: var(--black-color);
    color: var(--black-color);
}

.btn-outline-black:hover,
.btn-outline-black:focus {
    background-color: var(--black-color) !important;
    border-color: var(--black-color);
    color: #fff;
}

.btn-default {
    background-color: #f4f4f4;
    color:var(--black-color);
    border-color: #f4f4f4;
}

    .btn-default:hover,
    .btn-default:active,
    .btn-default.hover {
        background-color: #e7e7e7 !important;
    }

.btn-primary {
    background-color: var(--themePinkDark-color);
    
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary.hover {
        background-color: var(--themeTurqDark-color);
        
    }

.btn-success {
    background-color: #2b61ab;
    border-color: #2b61ab;
}

    .btn-success:hover,
    .btn-success:active,
    .btn-success.hover {
        background-color: #0e1b71;
        border-color: #0e1b71;
    }

.btn-info {
    background-color: #00acd6;
    border-color: #00acd6;
}

    .btn-info:hover,
    .btn-info:active,
    .btn-info.hover {
        background-color: #00acd6;
        border-color: #00acd6;
    }

.btn-danger{
    background-color: #dd4b39;
    border-color: #d73925;
    color:#fff;
}

    .btn-danger:hover,
    .btn-danger:active,
    .btn-danger.hover {
        background-color: #d73925;
        border-color: #d73925;
    }

.btn-warning {
    background-color: #ff7800;
    border-color: #e08e0b;
}

    .btn-warning:hover,
    .btn-warning:active,
    .btn-warning.hover {
        background-color: #e08e0b;
    }

.btn-outline {
    border-color:#0b0b0b;
    background: transparent;
    color: #0b0b0b;
}

    .btn-outline:hover,
    .btn-outline:focus,
    .btn-outline:active {
        color: #ffffff;
        border-color: #0b0b0b);
        background: #0b0b0b;
    }

.btn-link {        
    color: #2b61ab;    
}

    .btn-link:hover {
        color: #cf5700;        
    }

.btn[class*='bg-']:hover {
    -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.btn-app {
    border-radius: 3px;
    position: relative;
    padding: 15px 5px;
    margin: 0 0 10px 10px;
    min-width: 80px;
    height: 60px;
    text-align: center;
    color: #666;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    font-size: 12px;
}

    .btn-app > .fa,
    .btn-app > .glyphicon,
    .btn-app > .ion {
        font-size: 20px;
        display: block;
    }

    .btn-app:hover {
        background: #f4f4f4;
        color: #444;
        border-color: #aaa;
    }

    .btn-app:active,
    .btn-app:focus {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn-app > .badge {
        position: absolute;
        top: -3px;
        right: -10px;
        font-size: 10px;
        font-weight: 400;
    }

.btn-icon {
    position: relative;
}

    .btn-icon input,
    .btn-icon a {
        padding: 0px 5px 0px 25px !important;
    }

.btn-delete, .btn-cancel {
    color: #f44336;
}

    .btn-edit:before,
    .btn-delete:before,
    .btn-search:before,
    .btn-update:before,
    .btn-delete:before,
    .btn-cancel:before {
        font-family: FontAwesome;
        font-size: 14px;
        position: absolute;
        /*right: 20px;*/
        left: 10px;
        top: 0px;
        pointer-events: none;
    }

    .btn-update:before,
    .btn-delete:before,
    .btn-cancel:before {
        font-family: FontAwesome;
        font-size: 14px;
        position: absolute;
        /*right: 20px;*/
        left: 10px;
        top: 0px;
        pointer-events: none;
    }

.btn-search:before {
    content: "\f040";
}

.btn-edit:before {
    content: "\f040";
}

.btn-cancel:before {
    content: "\f00d";
    color: #f44336;
}

.btn-delete:before {
    content: "\f014";
    color: #f44336;
}

.btn-update:before {
    content: "\f00c";
    color: #2b61ab;
}

.btn-search:before {
    content: "\f002";
    color: #2b61ab;
}

/*----* Component: Status* -----------------*/
.success {
    color: #1DCC70;
    background-color: rgba(29,204,112,0.05) !important;
}
.pendding {
    color: #FFB400 !important;
    background-color: rgba(255,180,0,0.05) !important;
}
.danger {
    color: #FF396F;
    background-color: rgba(255,57,111,0.05) !important;
}
.processing {
    color: #6236FF !important;
    background-color: rgba(98,54,255,0.05) !important;
}
.pendding, .processing, .success, .danger {
    display: inline-block;
    padding: 0px 10px;    
    font-size:13px;
    line-height: 2;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 20px;    
}

.vertical-center {
    align-items: center;
    display: flex;
}
.vertical-bottom {
    align-self: flex-end !important;
}
.required-field{
    color: #dd4b39;
}
.error-msg {
    color: #dd4b39;    
}
.cancelled{
    color: #dd4b39;    
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    /*font-family: 'Avenir LT Std 65 Medium', sans-serif;*/
}

    .section-heading.padding {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading .title {
        margin: 0;
        font-size:20px;
        letter-spacing: -0.01em;
        line-height: 1em;
        padding-right: 16px;
    }

    .section-heading .link {
        /*color: rgba(98, 54, 255, 0.5);*/
        color: #3979b9;
        font-size: 13px;
        font-weight: 600;
    }
