:root {
    --font-family: 'Arial', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --header-bg-color: #D5DAE0;
    --primary-color: #2C5D7F;
    --secondary-color: #2FABED;
    --primary-btn-color: #232F3E;
    --primary-btn-color-hover: #2FABED;
    --secondary-btn-color: #282828;
    --secondary-btn-color-hover: #000000;
    --dark-gray: #282828;
    --bs-delete: #BE0006;
    --primary-btn-delete: #BE0006;
    --primary-btn-delete-hover: #E3141B;
    --error-message: #c00;
}

/*====================================
	Reset css
=====================================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.placeholder::placeholder,
.placeholder::-ms-input-placeholder {
    color: var(--charcoal-gray);
}

a:focus,
a:focus-visible,
a:focus-within,
.btn:focus,
.btn:focus-visible,
.btn:focus-within,
.nav-link:focus-visible,
input:focus,
input.form-control:focus,
.k-dropdown:focus,
.btn-close:focus,
.dropdown-toggle:focus,
button:focus,
button:focus-visible,
button:focus-within,
.slick-prev:focus,
.slick-next:focus,
.slick-play-btn:focus,
.slick-dots li button:focus,
.k-pager-wrap .k-link:focus,
.slick-slide a:focus img,
.aec-dd-loc:focus {
    outline-width: 1px;
    outline-style: solid;
    outline-color: var(--primary-color);
    outline-offset: -1px;
    box-shadow: none;
}

.k-dropdown:focus {
    outline-offset: 0;
}

html, body {
    height: 100%;
    line-height: 1.42857;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

::placeholder {
    color: var(--bs-black) !important;
    font-weight: 500;
}

/*====================================
	Base
====================================*/

body {
    font-family: var(--font-family);
    color: var(--bs-black);
    width: 100%;
    background-color: var(--bs-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/*====================================
	Container
=====================================*/

#aec-container {
    background: transparent none repeat scroll 0 0;
    margin: 0 auto;
    max-width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}

.main-container {
    width: 100%;
}

.row-fluid {
    margin-left: 0;
    margin-right: 0;
}

/*====================================
	Buttons
=====================================*/
.aec-buybutton {
     padding: 0; 
     font-size: 14px; 
}

.btn {
    border-radius: 0px;
    border: medium none;
    color: var(--bs-white);
    text-transform: capitalize;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-btn-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary:first-child:active {
    background-color: var(--primary-btn-color-hover);
    color: var(--bs-black);
}

.btn-secondary {
    background-color: var(--secondary-btn-color);
    color: var(--bs-white);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:active,
.btn-secondary:first-child:active {
    background-color: var(--secondary-btn-color-hover);
    box-shadow: none;
    color: var(--bs-white);
}

.btn-full-width {
    width: 100%;
    box-sizing: border-box;
}

.btn-link {
    color: var(--link-color);
    font-weight: 600;
    background: transparent;
    border: 0;
}

.btn-close,
.btn-close:hover {
    color: var(--bs-white);
    opacity: 1;
}

span.aec-buybutton:before {
    font-family: "icomoon";
    content: "\e903";
    display: inline-block;
    font-size: 20px;
    font-weight: normal;
    line-height: 1em;
    margin-right: 4px;
    position: relative;
    top: 2px;
}

.aec-buybutton .aec-buybutton-textbtn,
.aec-buybutton .aec-wishlistadd {
    background-color: var(--primary-btn-color);
    color: var(--bs-white);
    margin-bottom: 15px;
    height: 32px;
}
.aec-buybutton .aec-buybutton-textbtn:hover {
    background-color: var(--primary-btn-color-hover);
    color: var(--bs-black);
    
}
.aec-formats-holder .aec-buybutton .aec-buybutton-textbtn,
.aec-productfeature #aec-otherformats .aec-product-unavailable {
    width: 200px;
    min-width: 200px;
    height: auto;
}
/*====================================
	Inputs 
=====================================*/
.form-control {
    color: var(--bs-emphasis-color)
}

input.placeholder {
    background: var(--bs-white);
}
/*====================================
	Add Zone 
=====================================*/
.custom-row {
    display: flex;
    flex-wrap: wrap;
}

.custom-row .custom-row-item {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 10px;
}

.custom-row-item .aec-adzone a:focus {
    outline-offset: 0;
}

@media (max-width: 480px) {
    .custom-row .custom-row-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 768px) {
    .aec-buybutton .aec-buybutton-textbtn,
    .aec-buybutton .aec-wishlistadd {
        height: 38px;
    }
    .aec-buybutton {
        padding: 0;
        font-size: 15px;
    }
}

@media (min-width: 992px){
    .aec-buybutton .aec-buybutton-textbtn,
    .aec-buybutton .aec-wishlistadd {
        height: 42px;
    }
    .aec-buybutton {
        padding: 0;
        font-size: 16px;
    }
}
