:root{
    --Primary-color:#00A8E0;
    --Secondary-color:#f7f7f7;
    --Tertiary-color:  #def2fb;
    --Text-color:#5d5d5d;
    --Text-light-color:#9a9a9a;
    
    /* Button */
    --Main-button-color: #DEf2fb;
    --Admin-button-color: #3c3937;
    --Link-button-color: var(--Primary-color);

    /* Neutral */
    --White-color: #fff;
    --Black-color: #000;
    --Warning-color: #E71313;
    --Warning-hover-color: #db1212;

    /* Rgba */
    --Primary-color-opacity:rgba(0, 168, 224, .8);
    --Primary-Midlight-color-opacity: rgba(83, 169, 209, 0.85);
    --Primary-Light-color-opacity: rgba(222, 242, 251, .8);
    --Tertiary-Light-color: #f0f5f7;

    /* Border */
    --Border-default: 1px solid #9a9a9a6b;
    --Border-hover-default-color: #DEf2fb;
    --Border-primary: 1px solid var(--Primary-color); 
}

/* ---------------------- */
/* ----Base - Start--- */
/* ---------------------- */
/* Base */
body{
    font-family: "AkkuratStd", sans-serif;
    font-size: inherit;
    color: inherit;
}

h1,h2,h3,h4,h5,h6{
    font-family: PilcrowSoft;
}

p > a{
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: .3s;
    text-underline-offset: 0.25rem;

    &:hover{
        color: var(--Text-color);
        text-decoration: underline !important;
    }
}

.title{
    color: var(--Primary-color);
    font-weight: 600;
}

.input::placeholder, .catfish-input::placeholder, .catfish-select::placeholder, .textarea::placeholder, .catfish-textarea::placeholder{
    color: var(--Text-light-color);
}

/* Fonts */
/* Regular font weight (400) */
@font-face {
    font-family: 'AkkuratStd';
    src: url('/00000000-0000-0000-0000-000000000000/Handler/CSSOverride/GetImage/1/AkkuratStd-Regular.otf');
    font-weight: 400;
    font-style: normal;
}

/* Light font weight (300) */
@font-face {
    font-family: 'AkkuratStd';
    src: url('/00000000-0000-0000-0000-000000000000/Handler/CSSOverride/GetImage/1/AkkuratStd-Light.otf');
    font-weight: 300;
    font-style: normal;
}

/* Bold font weight (700) */
@font-face {
    font-family: 'AkkuratStd';
    src: url('/00000000-0000-0000-0000-000000000000/Handler/CSSOverride/GetImage/1/AkkuratStd-Bold.otf');
    font-weight: 700;
    font-style: normal;
}

/* Utilities */
.overlay{

    &::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(to right bottom, var(--Primary-Light-color-opacity), var(--Primary-Midlight-color-opacity), var(--Primary-color-opacity));
        width: 100%;
        height: 100%;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
    }
    
}

@media screen and (max-width: 1087px) {
    
    .overlay{

        &::before{
            background-image: linear-gradient(to right bottom, rgba(222, 242, 251, .8),  rgba(0, 168, 224, .7));
        }
        
    }
}

@media screen and (max-width: 600px) {
    
    .overlay{

        &::before{
            background-image: linear-gradient(to right bottom, rgba(222, 242, 251, .9),  rgba(0, 168, 224, .9));
        }
        
    }
}

/* Base - End */

/* ---------------------- */
/* Components - Start */
/* ---------------------- */
/* Buttons */
.catfish-button,
.button,
a{
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.catfish-button{
    color: var(--Text-color);

    &:hover,
    &:focus,
    &:active{
        background-color: var(--Primary-color);
        color: var(--White-color);
        box-shadow: unset !important;
    }
}

.catfish-button.is-outline,
#continueshoppingDummy{
    background: transparent;
    border: var(--Border-primary);
    color: var(--Primary-color);

    &:hover{
        background-color: var(--Primary-color);
        border-color: transparent;
        color: var(--White-color);
    }
}

#deleteall{
    background-color: var(--Warning-color);
    color: var(--White-color);

    &:hover{
        background-color: var(--Warning-hover-color);
    }
}

/* Inputs */
.catfish-select,
.catfish-input{
    border: var(--Border-default);
}

/* Product Cards */
.listWrapper{
    justify-content: center;
}

.listItem{

    .item-box{
        background: var(--Secondary-color);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 1px 2px 0 rgb(0 168 224 / 0.05);
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        transition: all .2s;
        -webkit-transition: all .2s;
        -moz-transition: all .2s;
        -ms-transition: all .2s;
        -o-transition: all .2s;

        &:hover{
            background-color: var(--Tertiary-color);

            & .productlistproductdetailbutton{
                background-color: var(--Primary-color);
                color: var(--White-color);
            }
        }
    }

    &:hover{

        & .item-box{
            box-shadow: 0 1px 3px 0 rgb(0 168 224 / 0.1), 0 1px 2px -1px rgb(0 168 224 / 0.1);
        }
    }
    
    .product-item--info{
        text-align: center;
    }

    .productPrice{
        width: 100%;
        text-align: center;
    }

     /* Category Cards */
     & .small-product-item{
        border-top: unset !important;    
    }

    & .category-item{

        &:hover{

            & .product-title{
                background-color: var(--Border-hover-default-color) !important;
            }
        }
    }

    @media screen and (max-width: 1279px) and  (min-width: 1088px) {
            width: 33.333333% !important;
    }

    @media screen and (max-width: 475px) {
        width: 100% !important;
    }
}

/* Components - End */

/* ---------------------- */
/* ----Layout - Start ----*/
/* ---------------------- */
/* System layout */
.section{
    border-radius: 16px;
    width: 90% !important;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

/* Header */
/* Navigation */
#main-navbar.navbar-menu{

    & a.navbar-link, & a.navbar-item{
        font-weight: 400;
    }

    & .navbar-item:hover .navbar-link {
        color: var(--Primary-color);
    }

    & .navbar-link:not(.is-arrowless)::after{
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
    }

    & .navbar-link:hover:not(.is-arrowless)::after, 
    & .navbar-link:focus:not(.is-arrowless)::after{
        border-color: var(--Primary-color);
    }

    & .navbar-item:hover .navbar-link:not(.is-arrowless)::after {
        border-color: var(--Primary-color);
    }

    & .navbar-dropdown{

        @media screen and (min-width: 1088px) {
            & a.navbar-item{
                
                &:hover{
                    background: var(--Main-button-color);
                    color: var(--Text-color);
                }
            }
        }
    }


    & .navbar-end{
        & .button.is-small, & .button.is-white {
            background: transparent;
            color: var(--Admin-button-color);
            font-size: 1rem;

            &:hover,
            &:active,
            &:focus{
                background: transparent;
                color: var(--Primary-color);
            }

            &:focus{
                box-shadow: none
            }
        }
    }
}

.nav-search-container{
    
    & .catfish-input{
        color: var(--Text-light-color);
        border: var(--Border-default);

        &:focus,
        &:active{
            border-color: var(--Border-hover-default-color);
        }
    }

    & .searchbutton{
        background-color: var(--Admin-button-color);
        color: var(--White-color);

        &:hover{
            background-color: var(--Primary-color);
        }
    }
}

.my-orders-link{
    display: none;
}

/* Footer */
.ict-dedicated-footer{

    & .ict-dedicated-footer-column-1{
        
        &img{
            object-fit: contain;
        }
    }

    & .ict-dedicated-footer-column-1 .is-flex > a{
        margin-bottom: 1rem;
    }

    & a{
        text-decoration: underline;
        text-decoration-color: transparent;
        transition: .3s;
        text-underline-offset: 0.25rem;

        &:hover{
            color: var(--Text-color);
            text-decoration: underline !important;
        }
    }

    & .ict-social-links{

        & li{
            &:hover{
                color: var(--Text-color);
            }
        }
    }

    & .footer-copyright{

        & h4{
            font-size: 90%;
        }
    }
}

/* Sections */
@media screen and (max-width: 1087px){
    section.additional-description-section,
    section.related-products-section,
    .block.block-account-navigation,
    .account-page{
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

@media screen and (max-width: 767px){
    section.section.is-large,
    .homeFeaturedProductsWrapper,
    .ict-dedicated-footer{
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    section.additional-description-section,
    section.related-products-section,
    .block.block-account-navigation,
    .account-page{
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}
/* Layout - End */

/* ---------------------- */
/* -----Admin Pages - Start-----*/
/* ---------------------- */
/* Product Landing */

.details-wrapper{

    & .full-description-wrapper{
         
        & .content{
            font-weight: 300;
        }
    }
}


.vue-component-wrapper{

    & h1.product-title,
    & span.product-title{
        color: var(--Primary-color) !important;
    }

    & .back-button{

        & a{
            background-color: var(--Main-button-color);

            &:hover{
                background-color: var(--Primary-color);
                color: var(--White-color)
            }
        }
    }

    & .button.is-light{
        background-color: var(--Main-button-color);

            &:hover{
                background-color: var(--Primary-color);
                color: var(--White-color) !important;
            }
    }
    
    & .product-attributes-box{
        background-color: var(--Primary-color);
        color: var(--Black-color);

        & i.fa-angle-up,
        & i.fa-angle-down{
            color: var(--Black-color);
        }
    }

    & .product-part{
        background-color: var(--Tertiary-color);
    }

    & .multipartUi-V2-Footer{

        & .upload-status-container .button{
            background-color: var(--Tertiary-color);

            &:hover{
                background-color: var(--Primary-color);

                & i.fa-tasks{
                    color: var(--White-color) !important;
                }
            }
        }
    }

    & #multipart-new-preview{
        background-color: var(--Tertiary-color);
    }
}

/* Basket Page */
.orderSummaryWrapper{

    & .cartform{

        & label{
            color: var(--Text-color);
        }

        & .cart-item-row{
            background-color: var(--Tertiary-Light-color) !important;
            border: var(--Border-default) !important;
        }

    }

    & .cart-item-row{
        @media screen and (min-width: 1471px) {
            & .cart--actions{
                flex: 0 0 10%;
           }
    
            & .productpicture{
                flex: 0 0 20%;
            }

            & .product{
                flex: 1 0 25% !important;
            }

            & .cart--quantity,
            & .cart--itemtotal{
                flex: 1 0 10%;
            }
        }

        @media screen and (max-width: 1470px) {
            & .productpicture{

                & .shopping-cart__product__images{
                    display: flex;
                    justify-content: center;
                }
            }

            & .product,
            & .cart--unitprice,
            & .cart--quantity,
            & .end.cart--itemtotal,
            & .cart-label-header {
                text-align: center;

                & .product__quantity{
                    display: flex;
                    justify-content: center;
                }
            }

            & .rawAttributeInfo__item{

                & .title{
                    text-align: right;
                    flex-basis: 46% !important;
                }

                & .separator{
                    margin: 0 .5rem;
                }

                & .value{
                    text-align: left;
                }
            }
        }
    }


    & .cart-item-row  .product{

        & .rawAttributeInfo__item {
            display: flex;
            font-size: .833em;
        }
        
        & .rawAttributeInfo__item:not(:first-child) {
            margin-top: .5rem;
        }
        
        & .rawAttributeInfo__item:not(:first-child) .title {
            margin-top: 0;
        }
        
        & .rawAttributeInfo__item span.title {
            flex-shrink: 0;
            flex-basis: auto;
            font-size: .975em;
            font-weight: 600;
        }
        
        & .rawAttributeInfo__item .separator {
            margin-right: .5rem;
            margin-left: .2rem;
        }    
    }

    & .cart-footer{
        
        & .cart-footer__container{
            border: var(--Border-default);
        }

        & .cart_total_left{
            
            & span{
                color: var(--Text-color);
            }
        }
    }

   & .common-buttons{

        @media screen and (max-width: 1470px) {
            justify-content: center;
        }
        
   }
}


/* Checkout */
.checkout-page{

    & .step-title{

        & h2{
            color: var(--Primary-color);
        }
    }
}

/* Delivery Method */
.one-page-checkout #opc-shipping_method .shipping-options .shipping-options__list .shipping-option-item input:checked + label .ui-button-text{
    color: var(--Primary-color);
}

/* Order Summary */
.order-summary-body{

    & .cartform{

        & label{
            color: var(--Text-color);
        }

        & .cart-item-row{
            background-color: var(--Tertiary-Light-color) !important;
            border: var(--Border-default) !important;
        }

    }
}

/* My Account */
.layout--accountPage .block-account-navigation ul li a.active{
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
/* Admin Pages - End */

/* ---------------------- */
/* -----Topic Pages - Start-----*/
/* ---------------------- */
/* Change Password */
.customer-pass-recovery{

    & .button{
        background-color: var(--Primary-color);
        

        &:hover{
            background-color: #009ed3;
        }
    }

    & input{
        background-color: transparent;
        color: var(--White-color);

        &:hover{
            background-color: transparent;
        }
    }
}
/* Topic Pages - End */

/* ---------------------- */
/* -----Responsiveness----*/
/* ---------------------- */

@media only screen and (max-width: 1600px) {
    
}

@media only screen and (max-width: 1280px) {
    
}

@media only screen and (max-width: 1024px) {
    
}

@media only screen and (max-width: 768px) {
    
}

@media only screen and (max-width: 320px) {
    
}
/* Responsiveness - End */

