/*------------------
    . Root
    . Common
    . Preloader
    . Accordion
    . Header Shopping Cart Icon section
    . Font
    . Input
    ---------------------*/

    /*------------------
        Root
        ---------------------*/
        :root {
            --primary: #8cac6e;
            --primary: #607d8b;
            --secondary: #413a3a;
            --hover: #000;
            --new: #50e550;
            --sale: #f51167;
            --link: #3755BE;
        }

    /*------------------
        Common
        ---------------------*/
        .spinner {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom:0;
            z-index: 3;
            background-color: rgba(255,255,255,0.3);
            display: none;
        }

        .spinner img {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            position: absolute;
        }

        input:disabled, .disabled {
            cursor: not-allowed !important;
            opacity: 0.5;
        }

        .all-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        .link {
            color: var(--link);
        }

        .semi-bold {
            font-weight: 600;
        }

        .spad {
            padding-top: 105px;
            padding-bottom: 105px;
        }

        input:focus,
        select:focus,
        button:focus,
        textarea:focus {
            outline: none;
        }

        .pointer {
            cursor: pointer;
        }

        form.ecom__delete-cart-item label.pointer.delete {
            height: 30px;
            width: 30px;
            line-height: 30px;
            border: 1px solid red;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            background-color: red;
            transition: all 0.8s ease;
            color: white;
            /*display: flex;
            justify-content: center;
            align-items: center;*/
        }

        form.ecom__delete-cart-item label.pointer.delete:hover {
            border: 1px solid red;
            background-color: white;
            color: red;
        }

        a {
            transition: all 0.3s ease-in-out;
        }

        a:hover,
        a:focus,
        input {
            transition: all 0.3s ease-in-out;
            text-decoration: none;
            outline: none;
        }

        ul,
        ol {
            padding: 0;
            margin: 0;
        }

        .site-btn {
            display: inline-block;
            border: none;
            font-size: 14px;
            font-weight: 600;
            min-width: 167px !important;
            padding: 18px 47px 14px !important;
            padding: 14px 47px 14px !important;
            border-radius: 50px !important;
            text-transform: uppercase;
            background: var(--primary);
            color: #fff !important;
            line-height: normal;
            cursor: pointer;
            text-align: center;
        }

        .site-btn:hover {
            color: #fff;
            background: var(--hover);
        }

        .site-btn.sb-white {
            background: #fff;
            color: #111111;
        }

        .site-btn.sb-line {
            background: transparent;
            color: #fff;
            -webkit-box-shadow: inset 0 0 0 1px #fff;
            box-shadow: inset 0 0 0 1px #fff;
        }

        .site-btn.sb-dark {
            background: var(--secondary);
        }

        .site-btn.sb-dark.sb-line {
            background-color: transparent;
            color: #111111;
            -webkit-box-shadow: inset 0 0 0 1px #111111;
            box-shadow: inset 0 0 0 1px #111111;
        }

/*------------------
    Preloader
    ---------------------*/
    #preloder {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 999999;
        background: rgba(255, 255, 255, 0.7);
    }

    .loader {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -13px;
        margin-left: -13px;
        border-radius: 60px;
        animation: loader 0.8s linear infinite;
        -webkit-animation: loader 0.8s linear infinite;
    }

    @keyframes loader {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            border: 4px solid #f44336;
            border-left-color: transparent;
        }

        50% {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
            border: 4px solid #673ab7;
            border-left-color: transparent;
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
            border: 4px solid #f44336;
            border-left-color: transparent;
        }
    }

    @-webkit-keyframes loader {
        0% {
            -webkit-transform: rotate(0deg);
            border: 4px solid #f44336;
            border-left-color: transparent;
        }

        50% {
            -webkit-transform: rotate(180deg);
            border: 4px solid #673ab7;
            border-left-color: transparent;
        }

        100% {
            -webkit-transform: rotate(360deg);
            border: 4px solid #f44336;
            border-left-color: transparent;
        }
    }

/*------------------
    Accordion
    ---------------------*/
    .ecom__accordion-area {
        margin-top: 50px;
        border-top: 2px solid #e1e1e1;
    }

    .ecom__accordion-area .panel {
        border-bottom: 2px solid #e1e1e1;
    }

    .ecom__accordion-area .panel-link {
        background-image: url("../img/arrow-down.png");
        background-repeat: no-repeat;
        background-position: right 10px top 30px;
    }

    .faq-accordion.ecom__accordion-area .panel-link,
    .faq-accordion.ecom__accordion-area .panel-link.active.collapsed {
        padding: 17px 100px 17px 20px;
    }

    .faq-accordion.ecom__accordion-area .panel-link:after {
        right: 44px;
    }

    .ecom__accordion-area .panel-header .panel-link.collapsed {
        background-image: url("../img/arrow-down.png");
    }

    .ecom__accordion-area .panel-link.active {
        background-image: url("../img/arrow-up.png");
    }

    .ecom__accordion-area .panel-link.active {
        background-color: transparent;
    }

    .ecom__accordion-area .panel-link,
    .ecom__accordion-area .panel-link.active.collapsed {
        text-align: left;
        position: relative;
        width: 100%;
        font-size: 14px;
        font-weight: 700;
        color: #414141;
        padding: 0;
        text-transform: uppercase;
        line-height: 1;
        cursor: pointer;
        border: none;
        min-height: 69px;
        background-color: transparent;
        border-radius: 0;
    }

    .ecom__accordion-area .panel-body {
        padding-top: 10px;
    }

    .ecom__accordion-area .panel-body p {
        color: #8f8f8f;
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .ecom__accordion-area .panel-body p span {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #f51167;
    }

    .ecom__accordion-area .panel-body img {
        margin-bottom: 25px;
    }

    .ecom__accordion-area .panel-body h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

/*------------------
  Header Shopping Cart Icon section
  ---------------------*/
  /*.ecom__shopping-cart {
    display: inline-block;
    position: relative;
    }*/

/*.ecom__shopping-cart span {
    position: absolute;
    top: -4px;
    left: 100%;
    height: 16px;
    min-width: 16px;
    color: #fff;
    font-size: 12px;
    background: var(--hover);
    text-align: center;
    border-radius: 30px;
    padding: 0 2px;
    margin-left: -7px;
    line-height: 1.4;
}
*/
/*------------------
  Font Size
  ---------------------*/
  .font-small {
    font-size: 12px;
}

.font-normal {
    font-size: 18px;
}

.font-large {
	font-size: 24px;
}

.font-xl {
	font-size: 36px;
}

/*------------------
  Font Color
  ---------------------*/
  .white {
  	color: #fff;
  }

  .black {
  	color: #000;
  }

  .red {
  	color: #f00;
  }

  .green {
  	color: #0f0;
  }

  .blue {
  	color: #00f;
  }

/*------------------
  Input
  ---------------------*/

  .ecom__forms {
    background: #fff;
    margin: 10px auto;
    /*margin-left: -12px;*/
    /*margin-right: -12px;*/
    /*max-width: 380px;*/
    max-height: auto;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.ecom__forms ul { list-style: none; }

.ecom__forms ul li { margin-top: 10px; }

.ecom__forms input {
    display: block;
    width:100%;
    padding: 5px 5px;
    border: 1px solid #ddd;
    border-width: 0 0 1px;
    color: black;
    border-radius: 0;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin: 0 auto;
}

.ecom__forms input:disabled, .ecom__forms input[readonly] {
    background-color: transparent;
    opacity: 0.5;
}

.text-limit {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 75ch;
}