/*
 * Style
 */


/* Reset */

:root {
    --blue: #ffd162;
    --darkgrey: #2c2e30;
    --white: #ffffff;
    --lightGray: #f3f3f3;
    --mediumGray: #ccc;
    --blue: #2c8cbc;
}

* {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    line-height: normal;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: normal;
    font-weight: 300;
    color: #222;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 10px;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    color: #147FB4;
}

h2 {
    font-size: 22px;
    font-weight: bold;
}

strong {
    font-weight: bold;
}

a {
    color: inherit;
    text-decoration: none;
    font-family: Verdana, Helvetica, Arial, sans-serif;
}

a:hover {
    text-decoration: underline;
}

b {
    font-weight: bold;
}

h3 {
    color: #147FB4;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 20px;
}

input,
select,
textarea {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    color: #000;
    padding: 10px 10px;
    font-size: 15px;
}

* {
    box-sizing: border-box;
}

.content-holder {}

.content {
    width: 100%;
    max-width: 1240px;
    margin: auto;
}

.info,
#info {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 80px 10px;
}

.content-full {
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
}

#map {
    line-height: 0;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}


/** CONTACT FORM **/

.contactForm {
    width: 100%;
}

.contactForm input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
}

.contactForm input.btn {
    width: 20px;
    margin: 10px 0;
}

.contactForm input.quantity {
    width: 50px;
    padding: 5px 0;
    margin-bottom: 0;
}

.contactForm input.custom {
    padding: 5px 0;
    margin-bottom: 0;
}

#submitButton {
    background: #147FB4;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: none;
}

#submitButton:hover {
    background: #222;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contactForm textarea {
    width: 100%;
    height: 200px;
}

.products_mobile {
    display: none;
    font-weight: bold;
    font-size: 12px;
}

table.products {
    width: 100%;
}

table.products th {
    text-align: left;
    font-weight: bold;
    padding: 10px;
    background-color: #147FB4;
    color: #fff;
}

table.products td {
    vertical-align: middle;
    padding: 10px;
}

.Row__Checkbox label:hover {
    opacity: .7;
}

table.products tr {
    width: 33.33%;
}

table.products tr:nth-child(odd) {
    background-color: #fafafa;
}


/** Checkboxes**/

.checkbox_input {
    display: none;
}

.Checkbox {
    width: 20px;
    height: 20px;
    margin: 10px 5px 7px;
    border: 1px solid #000000;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.Row__Checkbox label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.checkbox_input:checked~.Checkbox {
    background-color: #147FB4;
    transition: all 0.2s ease;
}

.checkbox_input:checked~.Checkbox:after {
    position: absolute;
    width: 18px;
    height: 18px;
    font-family: "FontAwesome";
    content: "\f00c";
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.2s ease;
}

.recaptcha-error {
    font-size: 10px;
    font-weight: bold;
    color: rgb(240, 72, 72);
}


/* Others */

.header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    position: relative;
}

.header-icon:hover {
    text-decoration: unset;
}

.la-shopping-basket::before {
    width: 5rem;
    font-size: 30px;
    color: var(--blue);
}


/**End of checkboxes**/


/* Loading MODAL */

.modal-layer {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 1000;
    padding: 200px;
    border-radius: 0.5rem;
    display: none;
}

#modal-wrapper {
    content: "";
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#checkout-message-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 100px 0;
}

#checkout-message {
    text-align: center;
}

@media all and (max-width: 768px) {
    #map iframe {
        height: 300px;
    }
    .products_desktop {
        display: none;
    }
    .products_mobile {
        display: block;
    }
    table.products th {
        font-size: 14px;
    }
    h3 {
        font-size: 18px;
    }
}

@media all and (max-width: 500px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 18px;
    }
}