:root {
    --font-color-gray: #b2b0b0;
    --primary-color: #D53E2F; /*Red*/
    --secondary-color: #4f4e5c; /*Gray*/
    --secondary-color-active: #5B5858;
    --orange: #fdb666;
    --navy-blue: #23527c;
    --dark-gray: #2d2d2d;
    --medium-dark-gray: #515151;
    --gray: #4f4e5e;
    --coral-red: #ff6c5c;
    --color-accent: #F9F7F1;
    --color-hover: #ff6c5c;
    --font-family: 'Gentona', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-size-base: 13px;
    --border-radius: 0px;
    --medium-gray: #767676;
    --charcoal-gray: #414141;
    --link-color: #07508e;
}

/*====================================
	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%;
    max-width: 960px;
}

.row-fluid {
    margin-left: 0;
    margin-right: 0;
}

/*====================================
	Buttons
=====================================*/
.aec-buybutton {
    padding: 0;
    font-size: 16px;
}

.btn {
    border-radius: 0px;
    border: medium none;
    color: var(--bs-white);
    text-transform: capitalize;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:first-child:active {
    background-color: var(--color-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bs-white);
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:first-child:active {
    background-color: var(--secondary-color-active);
    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 {
    height: 42px;
}

.aec-formats-holder .aec-buybutton .aec-buybutton-textbtn {
    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%;
    }
}

.aec-buybutton {
    white-space: nowrap !important;
}