.debug {
    display: none;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
code,
img,
q,
s,
samp,
small,
strike,
strong,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

*,
::before,
::after {
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #003247;
    letter-spacing: 0;
    text-align: left;
    line-height: 24px;
}




/************** links ******************/
a {
    color: #0092d2;
    text-decoration: none;
}

a:hover {
    color: #007BB8;
    text-decoration: none;
}

/************** headings ******************/
h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    color: #003247;
    letter-spacing: -0.8px;
    text-align: left;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 23px;
    color: #003247;
    letter-spacing: -0.6px;
    line-height: 32px;
    font-weight: 700;
}

h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #003247;
    letter-spacing: -0.3px;
    text-align: left;
    line-height: 24px;
    font-weight: 700;
}

h4 {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: #003247;
    letter-spacing: -0.3px;
    text-align: left;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

h5 {
    font-weight: 600
}



/************** p styles ******************/
.text-bold {
    font-weight: 700;
}

.text-small {
    font-size: 12px;
    letter-spacing: -0.15px;
    line-height: 16px;
}

.text-success {
    color: #0EAE0E;
}

.text-danger {
    color: #D0021B;
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}


/************** buttons ******************/
.primary-button {
    display: inline-block;
    background-image: linear-gradient(180deg, #009DE0 0%, #0081C7 100%);
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.1px;
    line-height: 20px;
    padding: 14px 20px;
}

.secondary-button {
    display: inline-block;
    background: #FFFFFF;
    border: none;
    box-shadow: inset 0px 0px 0px 1px #C7D2D9;
    border-radius: 4px;
    color: #003247;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.1px;
    line-height: 20px;
    padding: 14px 20px;
}

.primary-button.medium,
.secondary-button.medium {
    padding: 10px 16px;
}

/*** disabled ***/
.primary-button.disabled,
.primary-button:disabled {
    background: #72B4E0;
    pointer-events: none;
}

.secondary-button.disabled,
.secondary-button:disabled {
    color: #74838A;
    pointer-events: none;
}

.secondary-button.disabled img,
.secondary-button:disabled img {
    opacity: 0.4;
}

/*** with icon ***/
.primary-button.icon-right,
.secondary-button.icon-right {
    padding-right: 16px;
    display: inline-flex;
    align-items: center;
}

.primary-button.icon-left,
.secondary-button.icon-left {
    padding-left: 16px;
    display: inline-flex;
    align-items: center;
}

.primary-button.medium.icon-right,
.secondary-button.medium.icon-right {
    padding-right: 12px;
}

.primary-button.medium.icon-left,
.secondary-button.medium.icon-left {
    padding-left: 12px;
}

.primary-button.icon-right img,
.secondary-button.icon-right img {
    margin-left: 12px;
}

.primary-button.icon-left img,
.secondary-button.icon-left img {
    margin-right: 12px;
}

.primary-button.medium.icon-right img,
.secondary-button.medium.icon-right img {
    margin-left: 8px;
}

.primary-button.medium.icon-left img,
.secondary-button.medium.icon-left img {
    margin-right: 8px;
}

/*** hover ***/
.primary-button:hover {
    background: #003247;
    color: #fff;
}

.secondary-button:hover {
    box-shadow: inset 0px 0px 0px 1px #003247;
    color: #003247;
}


/* links with icon */
.link.icon-left,
.link-small.icon-left,
.link.icon-right,
.link-small.icon-right {
    display: inline-flex;
    align-items: center;
}

.link.icon-left img {
    margin-right: 6px;
}

.link.icon-right img {
    margin-left: 6px;
}

.link-small {
    font-size: 12px;
    letter-spacing: -0.15px;
    line-height: 16px;
}

.link-small.icon-left img {
    margin-right: 4px;
}

.link-small.icon-right img {
    margin-left: 4px;
}

button.link,
button.link-small {
    background: transparent;
    border: 0;
    color: #0092d2;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 14px
}

button.link:hover,
button.link-small:hover {
    color: #007bb8
}



/*************************** SCROLL TO TOP **************************/
#product-scroll-to-top {
    bottom: 80px;
    right: 16px;
    position: fixed;
    display: block;
    z-index: 99999;
}

#product-scroll-to-top a {
    display: block;
    width: 46px;
    height: 46px;
    border: 3px solid #fff;
    background: #0092D2 url(/assets/icons/icon-arrowscrolltotop-white-20.svg) center center no-repeat;
    box-shadow: 0 8px 20px 0 rgba(22, 60, 92, 0.10);
    border-radius: 8px;
}

#product-scroll-to-top a:hover {
    background-color: #003247;
}







/********************************* ALERT MESSAGE ********************************/

.alert {
    background: #FFFFFF;
    box-shadow: 0 8px 20px 0 rgba(22, 60, 92, 0.10);
    border-radius: 4px;
    position: relative;
    padding: 15px 16px 15px 64px;
    margin-bottom: 24px;
    margin-left: 16px;
    margin-right: 16px;
    letter-spacing: -0.1px;
    line-height: 18px;
    font-weight: 400;
}

.layout-container .alert {
    margin-left: 0;
    margin-right: 0;
}

.alert-dismissible {
    padding-right: 48px;
}

.alert:before {
    content: '';
    padding: 16px;
    border-radius: 4px 0 0 4px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.alert-info:before {
    content: url(/assets/icons/icon-info-white-16.svg);
    background-color: #0EAE0E;
}

.alert-warning:before {
    content: url(/assets/icons/icon-alert-white-16.svg);
    background-color: #FF6400;
}

.alert-danger:before {
    content: url(/assets/icons/icon-alert-white-16.svg);
    background-color: #FF6400;
}

.alert-success:before {
    content: url(/assets/icons/icon-check-white-16.svg);
    background-color: #0EAE0E;
}

.alert .btn-close {
    box-sizing: content-box;
    width: 16px;
    height: 16px;
    padding: 16px;
    background: transparent url(/assets/icons/icon-cancel-darkgrey-16.svg) center center no-repeat;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
}

.alert.fade {
    transition: opacity .15s linear;
}

.alert strong {
    font-weight: 700;
}



hr {
    border: 0;
    background-color: #c7d2d9;
    height: 1px;
    margin-top: 24px;
    margin-bottom: 24px
}

strong {
    font-weight: bold
}

ul {
    list-style-position: inside;
}

.ts-with-arrow .ts-control {
    position: relative;
    padding-right: 30px; /* Add space for the arrow */
    background: #fff url(/assets/icons/icon-arrowdown-darkgrey-12.svg) right 8px center no-repeat;
    background-size: 12px 12px; /* Adjust the size of the arrow */
}

/* --- FormIO Bootstrap Mapping --- */
.formio-form input,
.formio-form select,
.formio-form textarea {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #003247;
    letter-spacing: 0;
    text-align: left;
    line-height: 24px;
    border: 1px solid #C7D2D9;
    border-radius: 4px;
    padding: 10px 12px;
    background: #fff;
    box-sizing: border-box;
}

.formio-form .btn,
.formio-form button,
.formio-form [type="submit"] {
    display: inline-block;
    background-image: linear-gradient(180deg, #009DE0 0%, #0081C7 100%);
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.1px;
    line-height: 20px;
    padding: 14px 20px;
    cursor: pointer;
}

.formio-form .btn:disabled,
.formio-form button:disabled,
.formio-form [type="submit"]:disabled {
    background: #72B4E0;
    pointer-events: none;
}

.formio-form .form-group {
    margin-bottom: 24px;
}

.formio-form label {
    font-weight: 600;
    font-size: 15px;
    color: #003247;
    margin-bottom: 8px;
    display: block;
}

.formio-form .alert {
    background: #FFFFFF;
    box-shadow: 0 8px 20px 0 rgba(22, 60, 92, 0.10);
    border-radius: 4px;
    padding: 15px 16px 15px 64px;
    margin-bottom: 24px;
    letter-spacing: -0.1px;
    line-height: 18px;
    font-weight: 400;
}
