/* Minification failed. Returning unminified contents.
(8284,30): run-time error CSS1030: Expected identifier, found '-'
(8284,30): run-time error CSS1031: Expected selector, found '-'
(8284,30): run-time error CSS1025: Expected comma or open brace, found '-'
(11601,42): run-time error CSS1030: Expected identifier, found '-'
(11601,42): run-time error CSS1031: Expected selector, found '-'
(11601,42): run-time error CSS1025: Expected comma or open brace, found '-'
(11605,42): run-time error CSS1030: Expected identifier, found '-'
(11605,42): run-time error CSS1031: Expected selector, found '-'
(11605,42): run-time error CSS1025: Expected comma or open brace, found '-'
(12522,30): run-time error CSS1030: Expected identifier, found '-'
(12522,30): run-time error CSS1031: Expected selector, found '-'
(12522,30): run-time error CSS1025: Expected comma or open brace, found '-'
(12528,2): run-time error CSS1030: Expected identifier, found '-'
(12528,2): run-time error CSS1019: Unexpected token, found '-'
(12981,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12982,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(15429,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(15430,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '3%'
(15439,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(15440,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '10%'
(15449,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(15450,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '10%'
(20424,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(20425,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(23681,25): run-time error CSS1046: Expect comma, found '255'
(23681,33): run-time error CSS1046: Expect comma, found '/'
 */
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.perks li:hover .bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-delay: 0.3s;
  /* Chrome, Safari, Opera */
  animation-delay: 0.3s;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  0%,
  100% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  0%,
  100% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-delay: 1s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 1s;
}

@-webkit-keyframes vertical {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  0%,
  100% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(0, 10px, 0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes vertical {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  0%,
  100% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(0, 10px, 0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(0, -10px, 0);
  }
}

.vertical {
  -webkit-animation-name: vertical;
  animation-name: vertical;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

/* Button 1b */

.btn-animate:hover,
.btn-animate:active {
  color: #fff;
}

/* Button Animation */

.btn-animate {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  overflow: hidden;
}

.btn-animate:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #eb1c74;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn-animate:hover {
  color: #fff !important;
}

.btn-animate:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.btn-animate-green:before {
  background: #a8d52a;
}

.btn-animate-green:hover {
  color: #fff !important;
}

/* Slide Animation */

.slide {
  display: block;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.slide.closed {
  max-height: 0;
}

/* Rotate Y-Axis Animation */

@keyframes rotateY {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(359deg);
    transform: rotateY(359deg);
  }
}

/*
sm: 544px,
md: 768px,
lg: 992px,
xl: 1200px
*/
/* Colors */
/* Typography */
/* Bootstrap Variables */
/* Photosop to CSS Letter Spacing */
/* Border Radius */
/* Aspect Ratio */
/* Placeholder */
/*! sanitize.css v2.0.0 | CC0 1.0 Public Domain | github.com/jonathantneal/sanitize.css */
/*
 * Normalization
 */
:root {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-text-size-adjust: 100%;
}

audio:not([controls]) {
    display: none;
}

button {
    overflow: visible;
}

details {
    display: block;
}

input[type="number"] {
    width: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
}

    input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

main {
    display: block;
}

summary {
    display: block;
}

pre {
    overflow: auto;
}

progress {
    display: inline-block;
}

small {
    font-size: 75%;
}

template {
    display: none;
}

textarea {
    overflow: auto;
}

[hidden] {
    display: none;
}

/*
 * Universal inheritance
 */
*,
::before,
::after {
    box-sizing: inherit;
}

* {
    font-size: inherit;
    line-height: inherit;
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

/*
 * Opinionated defaults
 */
*,
::before,
::after {
    border-style: solid;
    border-width: 0;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    box-sizing: border-box;
    cursor: default;
    font: 100%/1.5 sans-serif;
    text-rendering: optimizeLegibility;
}

html {
    background-color: #ffffff;
    color: #000000;
}

a {
    text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

button,
input,
select,
textarea {
    background-color: transparent;
}

button,
input,
select,
textarea {
    color: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
}

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
    min-height: 1.5em;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
}

nav ol,
nav ul {
    list-style: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

    select::-ms-expand {
        display: none;
    }

    select::-ms-value {
        color: currentColor;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea {
    resize: vertical;
}

::selection {
    background-color: #b3d4fc;
    color: #4c2b03;
    text-shadow: none;
}

[aria-busy="true"] {
    cursor: progress;
}

[aria-controls] {
    cursor: pointer;
}

[aria-disabled] {
    cursor: default;
}

[hidden][aria-hidden="false"] {
    clip: rect(0 0 0 0);
    display: inherit;
    position: absolute;
}

    [hidden][aria-hidden="false"]:focus {
        clip: auto;
    }

@media screen and (max-width: 1200px) {
    .jp-card {
        min-width: 100% !important;
    }

        .jp-card .jp-card-front .jp-card-lower .jp-card-number {
            font-size: 20px !important;
            margin-bottom: 20px !important;
        }
}

html {
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

body {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    min-height: 100%;
    background: #f6f6f6;
    padding-top: 60px;
}

[class^="icon-"],
[class*=" icon-"] {
    display: inline-block;
    font: normal normal normal 16px/1 "quick-b2c";
}

    [class^="icon-"]:before,
    [class*=" icon-"]:before {
        display: inline-block;
        width: 1em;
    }

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    -webkit-appearance: none;
}

select {
    color: #000;
    font-family: "Open Sans", sans-serif;
}

div:not(.modal-overlay)::-webkit-scrollbar,
ul::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

*:not(.modal-overlay)::-webkit-scrollbar-track,
ul::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.1);
}

*:not(.modal-overlay)::-webkit-scrollbar-thumb,
ul::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
    transition: all 200ms ease-in-out;
}

button {
    cursor: pointer;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

input,
textarea {
    outline: none;
    font-family: "Open Sans", sans-serif;
    color: #000;
    padding-left: 10px;
    padding-right: 10px;
}

i {
    font-style: normal;
}

.left {
    float: left;
}

.right {
    float: right;
}

.block {
    display: block;
}

.show {
    display: block !important;
}

.hidden {
    display: none;
}

.hiddenp {
    left: -500%;
}

.invisible {
    visibility: hidden;
}

.relative {
    position: relative;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.clearfix,
.clear {
    zoom: 1;
}

    .clearfix:before, .clearfix:after,
    .clear:before,
    .clear:after {
        content: "\0020";
        display: block;
        height: 0;
        overflow: hidden;
    }

    .clearfix:after,
    .clear:after {
        clear: both;
    }

ul {
    list-style-type: none;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.holder {
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.valign {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.v-align {
    display: table;
    width: 100%;
}

    .v-align .v-align-middle {
        display: table-cell;
        vertical-align: middle;
    }

    .v-align .v-align-top {
        display: table-cell;
        vertical-align: top;
    }

    .v-align .v-align-bottom {
        display: table-cell;
        vertical-align: bottom;
    }

.cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

[disabled] {
    cursor: not-allowed;
}

.grid-row {
    zoom: 1;
}

    .grid-row:before, .grid-row:after {
        content: " ";
        display: table;
    }

    .grid-row:after {
        clear: both;
    }

.grid-row-gutter:before,
.grid-row-gutter:after {
    content: " ";
    display: table;
}

.grid-row-gutter:after {
    clear: both;
}

.grid-row-gutter {
    margin-left: -15px;
    margin-right: -15px;
}

    .grid-row-gutter > [class^="grid-"],
    .grid-row-gutter > [class*=" grid-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .grid-row-gutter > .grid-1,
    .grid-row-gutter > .grid-2,
    .grid-row-gutter > .grid-3,
    .grid-row-gutter > .grid-4,
    .grid-row-gutter > .grid-3-2 {
        padding-left: 15px;
        padding-right: 15px;
    }

.grid-1 {
    width: 100%;
}

.grid-2 {
    width: 50%;
    float: left;
}

.grid-3 {
    width: 33.333333%;
    float: left;
}

.grid-4 {
    width: 25%;
    float: left;
}

.grid-3-2 {
    width: 66.666666%;
    float: left;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right;
}

.btn {
    display: inline-block;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 3px;
}

.btn-mini {
    width: 43px;
    height: 43px;
}

.btn-green {
    background-color: #94d60a;
    color: #fff;
}

.button-stroke {
    cursor: pointer;
    font-weight: 700;
    color: #eb1c74 !important;
    border: 2px solid #eb1c74;
    border-radius: 3px;
    padding: 9px 16px 7px 16px;
}

    .button-stroke.green {
        color: #94d60a !important;
        border: 2px solid #94d60a;
    }

        .button-stroke.green:hover {
            background: #94d60a !important;
            color: #fff !important;
        }

.button-fill.green.small {
    color: #ffffff !important;
    border: 2px solid #94d60a;
    background-color: #94d60a;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    font-weight: 500;
}

    .button-fill.green.small:hover {
        border: 2px solid #eb1c74;
        background-color: #eb1c74;
    }

.button-fill {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
    padding: 8px 24px;
    color: #fff;
    background: #eb1c74;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .button-fill:hover {
        background: #c3115d;
    }

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.custom-select {
    height: 43px;
    border: 2px solid #eb1c74;
    line-height: 39px;
    border-radius: 3px;
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #444444;
    background-color: #fff;
    padding-left: 15px;
    padding-right: 50px;
}

    .custom-select img {
        width: auto;
        height: 12px;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .custom-select i {
        position: absolute;
        top: 0px;
        right: 12px;
        font-size: 16px;
        height: 39px;
        line-height: 39px;
        color: #bdbdbd;
    }

    .custom-select select {
        outline: none;
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        font-size: 16px;
    }

span.bold {
    font-weight: 700;
}

.select2-no-wrap .select2-container--default
.select2-selection--multiple
.select2-selection__rendered
.select2-selection__choice {
    white-space: pre-wrap;
}

.input-wrapper .progress {
    margin-top: 1rem;
}

.input-wrapper .password-verdict {
    font-size: 0.875rem;
}

.password-toggle {
    position: relative;
}

    .password-toggle .password-toggle-button {
        position: absolute;
        right: 4px;
        top: 8px;
    }

        .password-toggle .password-toggle-button img {
            width: 24px;
            height: 24px;
        }

        .password-toggle .password-toggle-button.active img {
            -webkit-transform: scale(0.9);
            -ms-transform: scale(0.9);
            transform: scale(0.9);
        }

.etbis {
    margin-top: 20px;
}

.guven-damgasi {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .footer-legal-badges {
        display: flex;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1300px) {
    .container {
        width: 1300px;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 480px) {
    .col-ms-1,
    .col-ms-2,
    .col-ms-3,
    .col-ms-4,
    .col-ms-5,
    .col-ms-6,
    .col-ms-7,
    .col-ms-8,
    .col-ms-9,
    .col-ms-10,
    .col-ms-11,
    .col-ms-12 {
        float: left;
    }

    .col-ms-12 {
        width: 100%;
    }

    .col-ms-11 {
        width: 91.66666667%;
    }

    .col-ms-10 {
        width: 83.33333333%;
    }

    .col-ms-9 {
        width: 75%;
    }

    .col-ms-8 {
        width: 66.66666667%;
    }

    .col-ms-7 {
        width: 58.33333333%;
    }

    .col-ms-6 {
        width: 50%;
    }

    .col-ms-5 {
        width: 41.66666667%;
    }

    .col-ms-4 {
        width: 33.33333333%;
    }

    .col-ms-3 {
        width: 25%;
    }

    .col-ms-2 {
        width: 16.66666667%;
    }

    .col-ms-1 {
        width: 8.33333333%;
    }

    .col-ms-pull-12 {
        right: 100%;
    }

    .col-ms-pull-11 {
        right: 91.66666667%;
    }

    .col-ms-pull-10 {
        right: 83.33333333%;
    }

    .col-ms-pull-9 {
        right: 75%;
    }

    .col-ms-pull-8 {
        right: 66.66666667%;
    }

    .col-ms-pull-7 {
        right: 58.33333333%;
    }

    .col-ms-pull-6 {
        right: 50%;
    }

    .col-ms-pull-5 {
        right: 41.66666667%;
    }

    .col-ms-pull-4 {
        right: 33.33333333%;
    }

    .col-ms-pull-3 {
        right: 25%;
    }

    .col-ms-pull-2 {
        right: 16.66666667%;
    }

    .col-ms-pull-1 {
        right: 8.33333333%;
    }

    .col-ms-pull-0 {
        right: auto;
    }

    .col-ms-push-12 {
        left: 100%;
    }

    .col-ms-push-11 {
        left: 91.66666667%;
    }

    .col-ms-push-10 {
        left: 83.33333333%;
    }

    .col-ms-push-9 {
        left: 75%;
    }

    .col-ms-push-8 {
        left: 66.66666667%;
    }

    .col-ms-push-7 {
        left: 58.33333333%;
    }

    .col-ms-push-6 {
        left: 50%;
    }

    .col-ms-push-5 {
        left: 41.66666667%;
    }

    .col-ms-push-4 {
        left: 33.33333333%;
    }

    .col-ms-push-3 {
        left: 25%;
    }

    .col-ms-push-2 {
        left: 16.66666667%;
    }

    .col-ms-push-1 {
        left: 8.33333333%;
    }

    .col-ms-push-0 {
        left: auto;
    }

    .col-ms-offset-12 {
        margin-left: 100%;
    }

    .col-ms-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-ms-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-ms-offset-9 {
        margin-left: 75%;
    }

    .col-ms-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-ms-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-ms-offset-6 {
        margin-left: 50%;
    }

    .col-ms-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-ms-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-ms-offset-3 {
        margin-left: 25%;
    }

    .col-ms-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-ms-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-ms-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.affix {
    position: fixed;
}

@media (min-width: 768px) {
    .row-eq-height-md {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.row-sm-gutter {
    margin-left: -5px;
    margin-right: -5px;
}

    .row-sm-gutter div[class^="col"] {
        padding-left: 5px;
        padding-right: 5px;
    }

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

/* Tab */
.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

/* Modal */
.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: 0.5;
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.img-responsive {
    display: block;
    max-width: 100%;
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 20px);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 60px);
    }
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #fafafa;
    border-radius: 0.25rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #eb1c74;
    transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        animation: none;
    }
}

.bg-primary {
    background-color: #eb1c74 !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #c3115d !important;
}

.bg-secondary {
    background-color: #1f2346 !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #0f1123 !important;
}

.bg-success {
    background-color: #94d60a !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #72a508 !important;
}

.bg-info {
    background-color: #3498db !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #217dbb !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.m-stack {
    display: block;
    width: 100%;
    height: 100%;
}

    .m-stack.m-stack--hor > .m-stack__item {
        display: block;
    }

        .m-stack.m-stack--hor > .m-stack__item.m-stack__item--fluid {
            display: block;
            height: auto;
        }

    .m-stack.m-stack--ver > .m-stack__item {
        display: block;
        height: auto;
    }

    .m-stack.m-stack--general {
        display: table;
        table-layout: fixed;
    }

        .m-stack.m-stack--general.m-stack--inline {
            width: auto;
        }

        .m-stack.m-stack--general.m-stack--hor > .m-stack__item {
            display: table-row;
            vertical-align: top;
            height: 1px;
        }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item > .m-stack__demo-item {
                height: 100%;
            }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item.m-stack__item--fluid {
                height: auto;
            }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--general.m-stack--hor > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

        .m-stack.m-stack--general.m-stack--ver.m-stack--demo {
            height: 80px;
        }

        .m-stack.m-stack--general.m-stack--ver > .m-stack__item {
            display: table-cell;
            vertical-align: top;
            height: 100%;
        }

            .m-stack.m-stack--general.m-stack--ver > .m-stack__item.m-stack__item--fluid {
                width: 100%;
            }

            .m-stack.m-stack--general.m-stack--ver > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--general.m-stack--ver > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--general.m-stack--ver > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--general.m-stack--ver > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--general.m-stack--ver > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--general.m-stack--ver > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

    .m-stack.m-stack--flex-general {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        -ms-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .m-stack.m-stack--flex-general.m-stack--ver > .m-stack__item.m-stack__item--first {
            display: block;
            -webkit-box-ordinal-group: 1;
            -moz-box-ordinal-group: 1;
            -ms-flex-order: 1;
            -webkit-order: 1;
            order: 1;
        }

        .m-stack.m-stack--flex-general.m-stack--ver > .m-stack__item.m-stack__item--last {
            display: block;
            -webkit-box-ordinal-group: 2;
            -moz-box-ordinal-group: 2;
            -ms-flex-order: 2;
            -webkit-order: 2;
            order: 2;
        }

@media (min-width: 993px) {
    .m-stack.m-stack--desktop {
        display: table;
        table-layout: fixed;
    }

        .m-stack.m-stack--desktop.m-stack--inline {
            width: auto;
        }

        .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item {
            display: table-row;
            vertical-align: top;
            height: 1px;
        }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item > .m-stack__demo-item {
                height: 100%;
            }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item.m-stack__item--fluid {
                height: auto;
            }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--desktop.m-stack--hor > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

        .m-stack.m-stack--desktop.m-stack--ver.m-stack--demo {
            height: 80px;
        }

        .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item {
            display: table-cell;
            vertical-align: top;
            height: 100%;
        }

            .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--fluid {
                width: 100%;
            }

            .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

    .m-stack.m-stack--flex-desktop {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        -ms-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .m-stack.m-stack--flex-desktop.m-stack--ver > .m-stack__item.m-stack__item--first {
            display: block;
            -webkit-box-ordinal-group: 1;
            -moz-box-ordinal-group: 1;
            -ms-flex-order: 1;
            -webkit-order: 1;
            order: 1;
        }

        .m-stack.m-stack--flex-desktop.m-stack--ver > .m-stack__item.m-stack__item--last {
            display: block;
            -webkit-box-ordinal-group: 2;
            -moz-box-ordinal-group: 2;
            -ms-flex-order: 2;
            -webkit-order: 2;
            order: 2;
        }
}

@media (min-width: 768px) {
    .m-stack.m-stack--desktop-and-tablet {
        display: table;
        table-layout: fixed;
    }

        .m-stack.m-stack--desktop-and-tablet.m-stack--inline {
            width: auto;
        }

        .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item {
            display: table-row;
            vertical-align: top;
            height: 1px;
        }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item > .m-stack__demo-item {
                height: 100%;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item.m-stack__item--fluid {
                height: auto;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--hor > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

        .m-stack.m-stack--desktop-and-tablet.m-stack--ver.m-stack--demo {
            height: 80px;
        }

        .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item {
            display: table-cell;
            vertical-align: top;
            height: 100%;
        }

            .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--fluid {
                width: 100%;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

    .m-stack.m-stack--flex-desktop-and-tablet {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        -ms-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .m-stack.m-stack--flex-desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--first {
            display: block;
            -webkit-box-ordinal-group: 1;
            -moz-box-ordinal-group: 1;
            -ms-flex-order: 1;
            -webkit-order: 1;
            order: 1;
        }

        .m-stack.m-stack--flex-desktop-and-tablet.m-stack--ver > .m-stack__item.m-stack__item--last {
            display: block;
            -webkit-box-ordinal-group: 2;
            -moz-box-ordinal-group: 2;
            -ms-flex-order: 2;
            -webkit-order: 2;
            order: 2;
        }
}

@media (min-width: 768px) and (max-width: 992px) {
    .m-stack.m-stack--tablet {
        display: table;
        table-layout: fixed;
    }

        .m-stack.m-stack--tablet.m-stack--inline {
            width: auto;
        }

        .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item {
            display: table-row;
            vertical-align: top;
            height: 1px;
        }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item > .m-stack__demo-item {
                height: 100%;
            }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item.m-stack__item--fluid {
                height: auto;
            }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--tablet.m-stack--hor > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

        .m-stack.m-stack--tablet.m-stack--ver.m-stack--demo {
            height: 80px;
        }

        .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item {
            display: table-cell;
            vertical-align: top;
            height: 100%;
        }

            .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item.m-stack__item--fluid {
                width: 100%;
            }

            .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--tablet.m-stack--ver > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

    .m-stack.m-stack--flex-tablet {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        -ms-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .m-stack.m-stack--flex-tablet.m-stack--ver > .m-stack__item.m-stack__item--first {
            display: block;
            -webkit-box-ordinal-group: 1;
            -moz-box-ordinal-group: 1;
            -ms-flex-order: 1;
            -webkit-order: 1;
            order: 1;
        }

        .m-stack.m-stack--flex-tablet.m-stack--ver > .m-stack__item.m-stack__item--last {
            display: block;
            -webkit-box-ordinal-group: 2;
            -moz-box-ordinal-group: 2;
            -ms-flex-order: 2;
            -webkit-order: 2;
            order: 2;
        }
}

@media (max-width: 992px) {
    .m-stack.m-stack--tablet-and-mobile {
        display: table;
        table-layout: fixed;
    }

        .m-stack.m-stack--tablet-and-mobile.m-stack--inline {
            width: auto;
        }

        .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item {
            display: table-row;
            vertical-align: top;
            height: 1px;
        }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item > .m-stack__demo-item {
                height: 100%;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item.m-stack__item--fluid {
                height: auto;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--hor > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

        .m-stack.m-stack--tablet-and-mobile.m-stack--ver.m-stack--demo {
            height: 80px;
        }

        .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item {
            display: table-cell;
            vertical-align: top;
            height: 100%;
        }

            .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--fluid {
                width: 100%;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

    .m-stack.m-stack--flex-tablet-and-mobile {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        -ms-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .m-stack.m-stack--flex-tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--first {
            display: block;
            -webkit-box-ordinal-group: 1;
            -moz-box-ordinal-group: 1;
            -ms-flex-order: 1;
            -webkit-order: 1;
            order: 1;
        }

        .m-stack.m-stack--flex-tablet-and-mobile.m-stack--ver > .m-stack__item.m-stack__item--last {
            display: block;
            -webkit-box-ordinal-group: 2;
            -moz-box-ordinal-group: 2;
            -ms-flex-order: 2;
            -webkit-order: 2;
            order: 2;
        }
}

@media (max-width: 768px) {
    .m-stack.m-stack--mobile {
        display: table;
        table-layout: fixed;
    }

        .m-stack.m-stack--mobile.m-stack--inline {
            width: auto;
        }

        .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item {
            display: table-row;
            vertical-align: top;
            height: 1px;
        }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item > .m-stack__demo-item {
                height: 100%;
            }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item.m-stack__item--fluid {
                height: auto;
            }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--mobile.m-stack--hor > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

        .m-stack.m-stack--mobile.m-stack--ver.m-stack--demo {
            height: 80px;
        }

        .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item {
            display: table-cell;
            vertical-align: top;
            height: 100%;
        }

            .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item.m-stack__item--fluid {
                width: 100%;
            }

            .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item.m-stack__item--left {
                text-align: left;
            }

            .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item.m-stack__item--right {
                text-align: right;
            }

            .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item.m-stack__item--center {
                text-align: center;
            }

            .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item.m-stack__item--top {
                vertical-align: top;
            }

            .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item.m-stack__item--middle {
                vertical-align: middle;
            }

            .m-stack.m-stack--mobile.m-stack--ver > .m-stack__item.m-stack__item--bottom {
                vertical-align: bottom;
            }

    .m-stack.m-stack--flex-mobile {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        -ms-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .m-stack.m-stack--flex-mobile.m-stack--ver > .m-stack__item.m-stack__item--first {
            display: block;
            -webkit-box-ordinal-group: 1;
            -moz-box-ordinal-group: 1;
            -ms-flex-order: 1;
            -webkit-order: 1;
            order: 1;
        }

        .m-stack.m-stack--flex-mobile.m-stack--ver > .m-stack__item.m-stack__item--last {
            display: block;
            -webkit-box-ordinal-group: 2;
            -moz-box-ordinal-group: 2;
            -ms-flex-order: 2;
            -webkit-order: 2;
            order: 2;
        }
}

.m-stack--demo.m-stack--ver .m-stack__item,
.m-stack--demo.m-stack--hor .m-stack__demo-item {
    padding: 10px;
    border: 1px solid #eee;
    background: #fbfbfb;
    font-weight: get-font-weight(bolder);
}

.select2-container *,
.select2-container *:focus {
    outline: 0;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

    .select2-container .select2-selection--single {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        height: 28px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--single .select2-selection__rendered {
            display: block;
            padding-left: 0px;
            padding-right: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select2-container .select2-selection--single .select2-selection__clear {
            position: relative;
        }

    .select2-container[dir="rtl"]
    .select2-selection--single
    .select2-selection__rendered {
        padding-right: 8px;
        padding-left: 20px;
    }

    .select2-container .select2-selection--multiple {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        min-height: 32px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--multiple .select2-selection__rendered {
            display: inline-block;
            overflow: hidden;
            padding-left: 8px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .select2-container .select2-search--inline {
        float: left;
    }

        .select2-container .select2-search--inline .select2-search__field {
            box-sizing: border-box;
            border: none;
            font-size: 100%;
            margin-top: 5px;
            padding: 0;
        }

            .select2-container
            .select2-search--inline
            .select2-search__field::-webkit-search-cancel-131n {
                -webkit-appearance: none;
            }

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

    .select2-results__option[aria-selected] {
        cursor: pointer;
    }

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

    .select2-search--dropdown .select2-search__field {
        padding: 4px;
        width: 100%;
        box-sizing: border-box;
    }

        .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none;
        }

    .select2-search--dropdown.select2-search--hide {
        display: none;
    }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 2px solid #cecece;
    border-radius: 3px;
    height: 43px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400 !important;
    padding-left: 15px;
    line-height: 38px;
}

    .select2-container--default.select2-container--open .select2-selection--single,
    .select2-container--default.select2-container--open
    .select2-selection--single:hover,
    .select2-container--default .select2-selection--single:hover {
        border-color: #eb1c74;
    }

    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
        color: #888;
        line-height: 38px;
    }

    .select2-container--default
    .select2-selection--single
    .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
    }

    .select2-container--default
    .select2-selection--single
    .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
    }

        .select2-container--default
        .select2-selection--single
        .select2-selection__arrow
        b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

        .select2-container--default
        .select2-selection--single
        .select2-selection__arrow
        i {
            position: relative;
            top: 5px;
            right: 10px;
            color: #888;
            font-size: 18px;
        }

.select2-container--default[dir="rtl"]
.select2-selection--single
.select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"]
.select2-selection--single
.select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled
.select2-selection--single {
    background-color: #eee;
    cursor: default;
}

    .select2-container--default.select2-container--disabled
    .select2-selection--single
    .select2-selection__clear {
        display: none;
    }

.select2-container--default.select2-container--open
.select2-selection--single
.select2-selection__arrow
b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

    .select2-container--default
    .select2-selection--multiple
    .select2-selection__rendered {
        box-sizing: border-box;
        list-style: none;
        margin: 0;
        padding: 0 5px;
        width: 100%;
    }

        .select2-container--default
        .select2-selection--multiple
        .select2-selection__rendered
        li {
            list-style: none;
        }

    .select2-container--default
    .select2-selection--multiple
    .select2-selection__placeholder {
        color: #999;
        margin-top: 5px;
        float: left;
    }

    .select2-container--default
    .select2-selection--multiple
    .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-top: 5px;
        margin-right: 10px;
    }

    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove {
        color: #999;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
    }

        .select2-container--default
        .select2-selection--multiple
        .select2-selection__choice__remove:hover {
            color: #333;
        }

.select2-container--default[dir="rtl"]
.select2-selection--multiple
.select2-selection__choice,
.select2-container--default[dir="rtl"]
.select2-selection--multiple
.select2-selection__placeholder,
.select2-container--default[dir="rtl"]
.select2-selection--multiple
.select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"]
.select2-selection--multiple
.select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"]
.select2-selection--multiple
.select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus
.select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled
.select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled
.select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above
.select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
.select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below
.select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
.select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role="group"] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled="true"] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

    .select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__group {
        padding-left: 0;
    }

    .select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__option {
        margin-left: -1em;
        padding-left: 2em;
    }

        .select2-container--default
        .select2-results__option
        .select2-results__option
        .select2-results__option
        .select2-results__option {
            margin-left: -2em;
            padding-left: 3em;
        }

            .select2-container--default
            .select2-results__option
            .select2-results__option
            .select2-results__option
            .select2-results__option
            .select2-results__option {
                margin-left: -3em;
                padding-left: 4em;
            }

                .select2-container--default
                .select2-results__option
                .select2-results__option
                .select2-results__option
                .select2-results__option
                .select2-results__option
                .select2-results__option {
                    margin-left: -4em;
                    padding-left: 5em;
                }

                    .select2-container--default
                    .select2-results__option
                    .select2-results__option
                    .select2-results__option
                    .select2-results__option
                    .select2-results__option
                    .select2-results__option
                    .select2-results__option {
                        margin-left: -5em;
                        padding-left: 6em;
                    }

.select2-container--default
.select2-results__option--highlighted[aria-selected] {
    background-color: #eb1c74;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

    .select2-container--classic .select2-selection--single:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic
    .select2-selection--single
    .select2-selection__rendered {
        color: #444;
        line-height: 28px;
    }

    .select2-container--classic
    .select2-selection--single
    .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-right: 10px;
    }

    .select2-container--classic
    .select2-selection--single
    .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--classic
    .select2-selection--single
    .select2-selection__arrow {
        background-color: #ddd;
        border: none;
        border-left: 1px solid #aaa;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
        background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
    }

        .select2-container--classic
        .select2-selection--single
        .select2-selection__arrow
        b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--classic[dir="rtl"]
.select2-selection--single
.select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"]
.select2-selection--single
.select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

    .select2-container--classic.select2-container--open
    .select2-selection--single
    .select2-selection__arrow {
        background: transparent;
        border: none;
    }

        .select2-container--classic.select2-container--open
        .select2-selection--single
        .select2-selection__arrow
        b {
            border-color: transparent transparent #888 transparent;
            border-width: 0 4px 5px 4px;
        }

.select2-container--classic.select2-container--open.select2-container--above
.select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below
.select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

    .select2-container--classic .select2-selection--multiple:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic
    .select2-selection--multiple
    .select2-selection__rendered {
        list-style: none;
        margin: 0;
        padding: 0 5px;
    }

    .select2-container--classic
    .select2-selection--multiple
    .select2-selection__clear {
        display: none;
    }

    .select2-container--classic
    .select2-selection--multiple
    .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .select2-container--classic
    .select2-selection--multiple
    .select2-selection__choice__remove {
        color: #888;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
    }

        .select2-container--classic
        .select2-selection--multiple
        .select2-selection__choice__remove:hover {
            color: #555;
        }

.select2-container--classic[dir="rtl"]
.select2-selection--multiple
.select2-selection__choice {
    float: right;
}

.select2-container--classic[dir="rtl"]
.select2-selection--multiple
.select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"]
.select2-selection--multiple
.select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open
.select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above
.select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below
.select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role="group"] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled="true"] {
    color: grey;
}

.select2-container--classic
.select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

/**
 * Swiper 4.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 1, 2018
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

    .swiper-container-autoheight .swiper-wrapper {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transition-property: height, -webkit-transform;
        transition-property: height, -webkit-transform;
        -o-transition-property: transform, height;
        transition-property: transform, height;
        transition-property: transform, height, -webkit-transform;
    }

/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

    .swiper-container-3d .swiper-wrapper,
    .swiper-container-3d .swiper-slide,
    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom,
    .swiper-container-3d .swiper-cube-shadow {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .swiper-container-3d .swiper-slide-shadow-left {
        background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-container-3d .swiper-slide-shadow-right {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-container-3d .swiper-slide-shadow-top {
        background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-container-3d .swiper-slide-shadow-bottom {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

    .swiper-button-prev.swiper-button-disabled,
    .swiper-button-next.swiper-button-disabled {
        opacity: 0.35;
        cursor: auto;
        pointer-events: none;
    }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0;
    }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
        transform: scale(0.33);
        position: relative;
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
        transform: scale(0.33);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
        transform: scale(0.33);
    }

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

    .swiper-container-vertical > .swiper-pagination-bullets
    .swiper-pagination-bullet {
        margin: 6px 0;
        display: block;
    }

    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 8px;
    }

        .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
        .swiper-pagination-bullet {
            display: inline-block;
            -webkit-transition: 200ms top, 200ms -webkit-transform;
            transition: 200ms top, 200ms -webkit-transform;
            -o-transition: 200ms transform, 200ms top;
            transition: 200ms transform, 200ms top;
            transition: 200ms transform, 200ms top, 200ms -webkit-transform;
        }

.swiper-container-horizontal > .swiper-pagination-bullets
.swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

    .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet {
        -webkit-transition: 200ms left, 200ms -webkit-transform;
        transition: 200ms left, 200ms -webkit-transform;
        -o-transition: 200ms transform, 200ms left;
        transition: 200ms transform, 200ms left;
        transition: 200ms transform, 200ms left, 200ms -webkit-transform;
    }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #007aff;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
    }

.swiper-container-rtl
.swiper-pagination-progressbar
.swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

    .swiper-container-vertical > .swiper-pagination-progressbar,
    .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0;
    }

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

    .swiper-pagination-progressbar.swiper-pagination-white
    .swiper-pagination-progressbar-fill {
        background: #ffffff;
    }

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

    .swiper-pagination-progressbar.swiper-pagination-black
    .swiper-pagination-progressbar-fill {
        background: #000000;
    }

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

    .swiper-zoom-container > img,
    .swiper-zoom-container > svg,
    .swiper-zoom-container > canvas {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

    .swiper-lazy-preloader:after {
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        background-position: 50%;
        background-size: 100%;
        background-repeat: no-repeat;
    }

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

    .swiper-container-fade .swiper-slide .swiper-slide {
        pointer-events: none;
    }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

    .swiper-container-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
        width: 100%;
        height: 100%;
    }

        .swiper-container-cube .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-container-cube.swiper-container-rtl .swiper-slide {
        -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-cube .swiper-slide-next,
    .swiper-container-cube .swiper-slide-prev,
    .swiper-container-cube .swiper-slide-next + .swiper-slide {
        pointer-events: auto;
        visibility: visible;
    }

    .swiper-container-cube .swiper-slide-shadow-top,
    .swiper-container-cube .swiper-slide-shadow-bottom,
    .swiper-container-cube .swiper-slide-shadow-left,
    .swiper-container-cube .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .swiper-container-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.6;
        -webkit-filter: blur(50px);
        filter: blur(50px);
        z-index: 0;
    }

.swiper-container-flip {
    overflow: visible;
}

    .swiper-container-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
    }

        .swiper-container-flip .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-container-flip .swiper-slide-active,
    .swiper-container-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-container-flip .swiper-slide-shadow-top,
    .swiper-container-flip .swiper-slide-shadow-bottom,
    .swiper-container-flip .swiper-slide-shadow-left,
    .swiper-container-flip .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

table.dataTable {
    clear: both;
    max-width: none !important;
    border-collapse: separate !important;
}

    table.dataTable td.dataTables_empty,
    table.dataTable th.dataTables_empty {
        text-align: center;
    }

    table.dataTable.nowrap th,
    table.dataTable.nowrap td {
        white-space: nowrap;
    }

div.dataTables_wrapper div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length select {
    width: 60px;
    display: inline-block;
    padding: 6px 12px;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
    margin-bottom: 20px;
}

    div.dataTables_wrapper div.dataTables_filter label {
        font-weight: normal;
        white-space: nowrap;
        text-align: left;
    }

    div.dataTables_wrapper div.dataTables_filter input {
        margin-left: 0.5em;
        display: inline-block;
        width: auto;
        padding: 6px 12px;
        margin-top: 20px;
    }

div.dataTables_wrapper div.dataTables_info {
    font-size: 0.875rem;
    color: #484848;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
    font-size: 0.875rem;
}

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        white-space: nowrap;
        display: flex;
        justify-content: center;
    }

        div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
            margin-left: 10px;
        }

            div.dataTables_wrapper div.dataTables_paginate ul.pagination li a {
                color: #1f2346;
            }

                div.dataTables_wrapper div.dataTables_paginate ul.pagination li a:hover {
                    color: #94d60a;
                }

            div.dataTables_wrapper div.dataTables_paginate ul.pagination li.active a {
                color: #eb1c74;
            }

            div.dataTables_wrapper div.dataTables_paginate ul.pagination li:first-child {
                margin-left: 0;
            }

@media (min-width: 768px) {
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: flex-end;
    }
}

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0;
}

table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
    padding-right: 30px;
    text-align: left;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
    outline: none;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

    table.dataTable thead .sorting:after,
    table.dataTable thead .sorting_asc:after,
    table.dataTable thead .sorting_desc:after,
    table.dataTable thead .sorting_asc_disabled:after,
    table.dataTable thead .sorting_desc_disabled:after {
        position: absolute;
        top: 50%;
        right: 8px;
        display: block;
        font-family: "quick-b2c";
        opacity: 0.5;
        line-height: 1;
        margin-top: -8px;
    }

    table.dataTable thead .sorting:after {
        opacity: 0.2;
        content: "\3a";
        /* sort */
    }

    table.dataTable thead .sorting_asc:after {
        content: "\2f";
        /* sort-by-attributes */
    }

    table.dataTable thead .sorting_desc:after {
        content: "\3b";
        /* sort-by-attributes-alt */
    }

    table.dataTable thead .sorting_asc_disabled:after,
    table.dataTable thead .sorting_desc_disabled:after {
        color: #eee;
    }

div.dataTables_scrollHead table.dataTable {
    margin-bottom: 0 !important;
}

div.dataTables_scrollBody > table {
    border-top: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

    div.dataTables_scrollBody > table > thead .sorting:after,
    div.dataTables_scrollBody > table > thead .sorting_asc:after,
    div.dataTables_scrollBody > table > thead .sorting_desc:after {
        display: none;
    }

    div.dataTables_scrollBody > table > tbody > tr:first-child > th,
    div.dataTables_scrollBody > table > tbody > tr:first-child > td {
        border-top: none;
    }

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
    box-sizing: content-box;
}

    div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
        margin-top: 0 !important;
        border-top: none;
    }

@media screen and (max-width: 767px) {
    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_filter,
    div.dataTables_wrapper div.dataTables_info,
    div.dataTables_wrapper div.dataTables_paginate {
        text-align: center;
    }
}

table.dataTable.table-condensed > thead > tr > th {
    padding-right: 20px;
}

table.dataTable.table-condensed .sorting:after,
table.dataTable.table-condensed .sorting_asc:after,
table.dataTable.table-condensed .sorting_desc:after {
    top: 6px;
    right: 6px;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
    border-left-width: 0;
}

    table.table-bordered.dataTable th:last-child,
    table.table-bordered.dataTable th:last-child,
    table.table-bordered.dataTable td:last-child,
    table.table-bordered.dataTable td:last-child {
        border-right-width: 0;
    }

table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
    border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
    border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
    margin: 0;
}

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
        padding-left: 0;
    }

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
        padding-right: 0;
    }

@media screen and (min-width: 992px) {
    div.dataTables_wrapper div.dataTables_filter input {
        margin-top: 0;
    }
}

.dataTable.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin-bottom: 20px;
}

/*! jQuery UI - v1.12.1 - 2016-09-29
* http://jqueryui.com
* Includes: core.css, datepicker.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

.ui-helper-clearfix:after {
    clear: both;
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
    /* support: IE8 */
}

.ui-front {
    z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-datepicker {
    width: 17em;
    padding: 0.2em 0.2em 0;
    display: none;
}

    .ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: 0.4em 0;
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        position: absolute;
        top: 0.4em;
        width: 1.8em;
        height: 1.8em;
    }

    .ui-datepicker .ui-datepicker-prev {
        left: 0.2em;
    }

    .ui-datepicker .ui-datepicker-next {
        right: 0.2em;
    }

    .ui-datepicker .ui-datepicker-title {
        margin: 0 2em;
        line-height: 1.8em;
    }

        .ui-datepicker .ui-datepicker-title select {
            font-size: 1em;
            background-color: #fff;
            width: 44%;
            margin: 0 3%;
            padding: 0 0.8em;
        }

    .ui-datepicker table {
        width: 100%;
        font-size: 0.9em;
        border-collapse: collapse;
        margin: 0 0 0.4em;
    }

    .ui-datepicker th {
        padding: 0.7em 0.3em;
        text-align: center;
        font-weight: bold;
        border: 0;
    }

    .ui-datepicker td {
        border: 0;
        padding: 1px;
    }

        .ui-datepicker td span,
        .ui-datepicker td a {
            display: block;
            padding: 0.2em;
            text-align: center;
            text-decoration: none;
        }

    .ui-datepicker .ui-datepicker-buttonpane {
        background-image: none;
        margin: 0.7em 0 0 0;
        padding: 0 0.2em;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

        .ui-datepicker .ui-datepicker-buttonpane button {
            float: right;
            margin: 0.5em 0.2em 0.4em;
            cursor: pointer;
            padding: 0.2em 0.6em 0.3em 0.6em;
            width: auto;
            overflow: visible;
        }

            .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
                float: left;
            }

    /* with multiple calendars */
    .ui-datepicker.ui-datepicker-multi {
        width: auto;
    }

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

    .ui-datepicker-multi .ui-datepicker-group table {
        width: 95%;
        margin: 0 auto 0.4em;
    }

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
    direction: rtl;
}

    .ui-datepicker-rtl .ui-datepicker-prev {
        right: 2px;
        left: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-next {
        left: 2px;
        right: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-prev:hover {
        right: 1px;
        left: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-next:hover {
        left: 1px;
        right: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-buttonpane {
        clear: right;
    }

        .ui-datepicker-rtl .ui-datepicker-buttonpane button {
            float: left;
        }

            .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
            .ui-datepicker-rtl .ui-datepicker-group {
                float: right;
            }

    .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
    .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
        border-right-width: 0;
        border-left-width: 1px;
    }

/* Icons */
.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
 */
/* Component containers
----------------------------------*/
.ui-widget {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}

    .ui-widget .ui-widget {
        font-size: 1em;
    }

    .ui-widget input,
    .ui-widget select,
    .ui-widget textarea,
    .ui-widget button {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1em;
    }

    .ui-widget.ui-widget-content {
        border: 1px solid #e4e4e4;
        box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.06);
    }

.ui-widget-content {
    background: #fff;
    color: #333333;
    z-index: 100 !important;
}

    .ui-widget-content a {
        color: #333333;
    }

.ui-widget-header {
    border: none;
    background: #f4f4f4;
    color: #333333;
    font-weight: bold;
}

    .ui-widget-header a {
        color: #333333;
    }

    /* Interaction states
----------------------------------*/
    .ui-state-default,
    .ui-widget-content .ui-state-default,
    .ui-widget-header .ui-state-default,
    .ui-button,
    html .ui-button.ui-state-disabled:hover,
    html .ui-button.ui-state-disabled:active {
        border: 1px solid transparent;
        background: transparent;
        font-weight: normal;
        color: #444444;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

        .ui-state-default a,
        .ui-state-default a:link,
        .ui-state-default a:visited,
        a.ui-button,
        a:link.ui-button,
        a:visited.ui-button,
        .ui-button {
            color: #454545;
            text-decoration: none;
        }

            .ui-state-hover,
            .ui-widget-content .ui-state-hover,
            .ui-widget-header .ui-state-hover,
            .ui-state-focus,
            .ui-widget-content .ui-state-focus,
            .ui-widget-header .ui-state-focus,
            .ui-button:hover,
            .ui-button:focus {
                border-color: transparent;
                background: #f1f1f1;
                font-weight: normal;
                color: #2b2b2b;
            }

                .ui-state-hover a,
                .ui-state-hover a:hover,
                .ui-state-hover a:link,
                .ui-state-hover a:visited,
                .ui-state-focus a,
                .ui-state-focus a:hover,
                .ui-state-focus a:link,
                .ui-state-focus a:visited,
                a.ui-button:hover,
                a.ui-button:focus {
                    color: #2b2b2b;
                    text-decoration: none;
                }

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background: #eb1c74;
    color: #ffffff;
    font-weight: normal;
}

    .ui-icon-background,
    .ui-state-active .ui-icon-background {
        border: #003eff;
        background-color: #ffffff;
    }

    .ui-state-active a,
    .ui-state-active a:link,
    .ui-state-active a:visited {
        color: #ffffff;
        text-decoration: none;
    }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border-color: #1f2346;
    background-color: transparent;
    font-weight: normal;
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #f1a899;
    background: #fddfdf;
    color: #5f3f3f;
}

    .ui-state-error a,
    .ui-widget-content .ui-state-error a,
    .ui-widget-header .ui-state-error a {
        color: #5f3f3f;
    }

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: 0.7;
    filter: Alpha(Opacity=70);
    /* support: IE8 */
    font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 0.35;
    filter: Alpha(Opacity=35);
    /* support: IE8 */
    background-image: none;
}

    .ui-state-disabled .ui-icon {
        filter: Alpha(Opacity=35);
        /* support: IE8 - See #6059 */
    }

.ui-state-active.ui-state-highlight {
    border-color: transparent;
    background-color: #eb1c74;
    color: #fff;
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
    width: 16px;
    height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url(/Content/css/images/ui-icons_444444_256x240.png);
}

.ui-widget-header .ui-icon {
    background-image: url(/Content/css/images/ui-icons_444444_256x240.png);
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
    background-image: url(/Content/css/images/ui-icons_555555_256x240.png);
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
    background-image: url(/Content/css/images/ui-icons_ffffff_256x240.png);
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
    background-image: url(/Content/css/images/ui-icons_777620_256x240.png);
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url(/Content/css/images/ui-icons_cc0000_256x240.png);
}

.ui-button .ui-icon {
    background-image: url(/Content/css/images/ui-icons_777777_256x240.png);
}

/* positioning */
.ui-icon-blank {
    background-position: 16px 16px;
}

.ui-icon-caret-1-n {
    background-position: 0 0;
}

.ui-icon-caret-1-ne {
    background-position: -16px 0;
}

.ui-icon-caret-1-e {
    background-position: -32px 0;
}

.ui-icon-caret-1-se {
    background-position: -48px 0;
}

.ui-icon-caret-1-s {
    background-position: -65px 0;
}

.ui-icon-caret-1-sw {
    background-position: -80px 0;
}

.ui-icon-caret-1-w {
    background-position: -96px 0;
}

.ui-icon-caret-1-nw {
    background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
    background-position: -144px 0;
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
    background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
    background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}

.ui-icon-arrow-4 {
    background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}

.ui-icon-extlink {
    background-position: -32px -80px;
}

.ui-icon-newwin {
    background-position: -48px -80px;
}

.ui-icon-refresh {
    background-position: -64px -80px;
}

.ui-icon-shuffle {
    background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px;
}

.ui-icon-folder-open {
    background-position: -16px -96px;
}

.ui-icon-document {
    background-position: -32px -96px;
}

.ui-icon-document-b {
    background-position: -48px -96px;
}

.ui-icon-note {
    background-position: -64px -96px;
}

.ui-icon-mail-closed {
    background-position: -80px -96px;
}

.ui-icon-mail-open {
    background-position: -96px -96px;
}

.ui-icon-suitcase {
    background-position: -112px -96px;
}

.ui-icon-comment {
    background-position: -128px -96px;
}

.ui-icon-person {
    background-position: -144px -96px;
}

.ui-icon-print {
    background-position: -160px -96px;
}

.ui-icon-trash {
    background-position: -176px -96px;
}

.ui-icon-locked {
    background-position: -192px -96px;
}

.ui-icon-unlocked {
    background-position: -208px -96px;
}

.ui-icon-bookmark {
    background-position: -224px -96px;
}

.ui-icon-tag {
    background-position: -240px -96px;
}

.ui-icon-home {
    background-position: 0 -112px;
}

.ui-icon-flag {
    background-position: -16px -112px;
}

.ui-icon-calendar {
    background-position: -32px -112px;
}

.ui-icon-cart {
    background-position: -48px -112px;
}

.ui-icon-pencil {
    background-position: -64px -112px;
}

.ui-icon-clock {
    background-position: -80px -112px;
}

.ui-icon-disk {
    background-position: -96px -112px;
}

.ui-icon-calculator {
    background-position: -112px -112px;
}

.ui-icon-zoomin {
    background-position: -128px -112px;
}

.ui-icon-zoomout {
    background-position: -144px -112px;
}

.ui-icon-search {
    background-position: -160px -112px;
}

.ui-icon-wrench {
    background-position: -176px -112px;
}

.ui-icon-gear {
    background-position: -192px -112px;
}

.ui-icon-heart {
    background-position: -208px -112px;
}

.ui-icon-star {
    background-position: -224px -112px;
}

.ui-icon-link {
    background-position: -240px -112px;
}

.ui-icon-cancel {
    background-position: 0 -128px;
}

.ui-icon-plus {
    background-position: -16px -128px;
}

.ui-icon-plusthick {
    background-position: -32px -128px;
}

.ui-icon-minus {
    background-position: -48px -128px;
}

.ui-icon-minusthick {
    background-position: -64px -128px;
}

.ui-icon-close {
    background-position: -80px -128px;
}

.ui-icon-closethick {
    background-position: -96px -128px;
}

.ui-icon-key {
    background-position: -112px -128px;
}

.ui-icon-lightbulb {
    background-position: -128px -128px;
}

.ui-icon-scissors {
    background-position: -144px -128px;
}

.ui-icon-clipboard {
    background-position: -160px -128px;
}

.ui-icon-copy {
    background-position: -176px -128px;
}

.ui-icon-contact {
    background-position: -192px -128px;
}

.ui-icon-image {
    background-position: -208px -128px;
}

.ui-icon-video {
    background-position: -224px -128px;
}

.ui-icon-script {
    background-position: -240px -128px;
}

.ui-icon-alert {
    background-position: 0 -144px;
}

.ui-icon-info {
    background-position: -16px -144px;
}

.ui-icon-notice {
    background-position: -32px -144px;
}

.ui-icon-help {
    background-position: -48px -144px;
}

.ui-icon-check {
    background-position: -64px -144px;
}

.ui-icon-bullet {
    background-position: -80px -144px;
}

.ui-icon-radio-on {
    background-position: -96px -144px;
}

.ui-icon-radio-off {
    background-position: -112px -144px;
}

.ui-icon-pin-w {
    background-position: -128px -144px;
}

.ui-icon-pin-s {
    background-position: -144px -144px;
}

.ui-icon-play {
    background-position: 0 -160px;
}

.ui-icon-pause {
    background-position: -16px -160px;
}

.ui-icon-seek-next {
    background-position: -32px -160px;
}

.ui-icon-seek-prev {
    background-position: -48px -160px;
}

.ui-icon-seek-end {
    background-position: -64px -160px;
}

.ui-icon-seek-start {
    background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
    background-position: -80px -160px;
}

.ui-icon-stop {
    background-position: -96px -160px;
}

.ui-icon-eject {
    background-position: -112px -160px;
}

.ui-icon-volume-off {
    background-position: -128px -160px;
}

.ui-icon-volume-on {
    background-position: -144px -160px;
}

.ui-icon-power {
    background-position: 0 -176px;
}

.ui-icon-signal-diag {
    background-position: -16px -176px;
}

.ui-icon-signal {
    background-position: -32px -176px;
}

.ui-icon-battery-0 {
    background-position: -48px -176px;
}

.ui-icon-battery-1 {
    background-position: -64px -176px;
}

.ui-icon-battery-2 {
    background-position: -80px -176px;
}

.ui-icon-battery-3 {
    background-position: -96px -176px;
}

.ui-icon-circle-plus {
    background-position: 0 -192px;
}

.ui-icon-circle-minus {
    background-position: -16px -192px;
}

.ui-icon-circle-close {
    background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px;
}

.ui-icon-circle-check {
    background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
    background: #aaaaaa;
    opacity: 0.3;
    filter: Alpha(Opacity=30);
    /* support: IE8 */
}

.ui-widget-shadow {
    -webkit-box-shadow: 0px 0px 5px #666666;
    box-shadow: 0px 0px 5px #666666;
}

.ui-datepicker .ui-icon {
    background-image: none;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
}

    .ui-datepicker .ui-icon:before {
        display: table-cell;
        vertical-align: middle;
        font-family: "quick-b2c";
        width: 100%;
        height: 100%;
        color: #eb1c74;
        text-indent: 0;
        font-size: 0.75em;
    }

.ui-datepicker .ui-datepicker-prev span:before {
    content: "\76";
}

.ui-datepicker .ui-datepicker-next span:before {
    content: "\41";
}

/* Checkbox Styling */
[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

    [type="checkbox"] + label {
        position: relative;
        padding-left: 30px;
        line-height: 20px;
        cursor: pointer;
        display: inline-block;
    }

        [type="checkbox"] + label:before,
        [type="checkbox"] + label:after {
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            transition: all 0.2s;
        }

        [type="checkbox"] + label:before {
            width: 20px;
            height: 20px;
            border-radius: 3px;
            background-color: #fff;
            border: 2px solid #888;
        }

    [type="checkbox"]:checked + label:before {
        background-color: #94d60a;
        border-color: #94d60a;
    }

    [type="checkbox"] + label:after {
        font-family: "quick-b2c";
        content: "\4a";
        font-size: 12px;
        line-height: 20px;
        left: 5px;
        color: #94d60a;
    }

    [type="checkbox"]:checked + label:after {
        color: #fff !important;
    }

    /* Checkbox Mark States */
    [type="checkbox"] + label:after {
        opacity: 0;
        transform: scale(0);
    }

    [type="checkbox"]:checked + label:after {
        opacity: 1;
        transform: scale(1);
    }

/* Checkbox Colors */
.light-checkbox[type="checkbox"] label:before {
    background-color: #fafafa;
}

.dark-checkbox[type="checkbox"] + label:before {
    background-color: #484848;
    border-color: #aaa;
}

/* Disabled Checkbox */
[type="checkbox"]:disabled + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}

.checkbox-wrapper {
    margin-bottom: 10px;
}

    .checkbox-wrapper label a {
        font-weight: 600;
        color: #3a3a3a;
    }

        .checkbox-wrapper label a:hover {
            color: #eb1c74;
            text-decoration: underline;
        }

/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
    /* this ensures that a constrained height set by functionPosition,
    if greater that the natural height of the tooltip, will be enforced
    in browsers that support display:flex */
    display: flex;
    pointer-events: none;
    /* this may be overriden in JS for fixed position origins */
    position: absolute;
}

.tooltipster-box {
    /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
    and flex-basis auto for IE11- (at least) */
    flex: 1 1 auto;
}

.tooltipster-content {
    /* prevents an overflow if the user adds padding to the div */
    box-sizing: border-box;
    /* these make sure we'll be able to detect any overflow */
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}

.tooltipster-ruler {
    /* these let us test the size of the tooltip without overflowing the window */
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}

    .tooltipster-fade.tooltipster-show {
        opacity: 1;
    }

/* grow */
.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

    .tooltipster-grow.tooltipster-show {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
        -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
        -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
        -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    }

/* swing */
.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

    .tooltipster-swing.tooltipster-show {
        opacity: 1;
        -webkit-transform: rotateZ(0deg);
        -moz-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
        -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
        -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
        -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
        -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
        transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    }

/* fall */
.tooltipster-fall {
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

    .tooltipster-fall.tooltipster-initial {
        top: 0 !important;
    }

    .tooltipster-fall.tooltipster-dying {
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        -ms-transition-property: all;
        transition-property: all;
        top: 0 !important;
        opacity: 0;
    }

/* slide */
.tooltipster-slide {
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

    .tooltipster-slide.tooltipster-initial {
        left: -40px !important;
    }

    .tooltipster-slide.tooltipster-dying {
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        -ms-transition-property: all;
        transition-property: all;
        left: 0 !important;
        opacity: 0;
    }

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.tooltipster-update-fade {
    animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
    25% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0);
    }
}

.tooltipster-update-rotate {
    animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.tooltipster-update-scale {
    animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
    background: rgba(9, 47, 87, 0.9);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 4px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 4px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 4px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 4px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
    color: white;
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 10px;
    max-width: 320px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 4px;
    /* half the width, for centering */
    margin-left: -4px;
    top: 0;
    width: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 8px;
    margin-top: -6px;
    right: 0;
    /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
    been positioned yet */
    top: 0;
    width: 4px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 8px;
    margin-top: -6px;
    left: 0;
    /* same as .tooltipster-left .tooltipster-arrow */
    top: 0;
    width: 4px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 4px;
    margin-left: -4px;
    width: 8px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
    border: 4px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: rgba(9, 47, 87, 0.9);
    left: 0;
    top: 0px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: rgba(9, 47, 87, 0.9);
    left: 0px;
    top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: rgba(9, 47, 87, 0.9);
    left: 0px;
    top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: rgba(9, 47, 87, 0.9);
    left: 0;
    top: 0px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
    display: none;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -4px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -4px;
}

.header {
    width: 100%;
    height: 60px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0px 4px 8px -3px rgba(17, 17, 17, 0.06);
}

    .header .container {
        position: relative;
    }

    .header .logo {
        display: block;
        float: left;
        margin: 10px 0;
    }

        .header .logo img {
            height: 40px;
            width: auto;
        }

.desktop-menu {
    display: none;
}

.mobile-menu-button {
    display: block;
    float: right;
}

.top-menu ul li {
    display: block;
    float: left;
}

    .top-menu ul li a {
        display: block;
        height: 80px;
        color: #1f2346;
        font-size: 1rem;
        font-weight: 600;
        line-height: 80px;
        transition: none;
        padding: 0 8px;
    }

        .top-menu ul li a.color--pink {
            color: #eb1c74;
        }

        .top-menu ul li a.active {
            background-color: #f3f3f3;
        }

        .top-menu ul li a .badge {
            position: relative;
            top: -4px;
            left: 2px;
        }

        .top-menu ul li a .q {
            display: block;
            float: left;
            margin-right: 6px;
            width: 25px;
            height: 80px;
            background: url(/Content/images/q.png) no-repeat center;
            background-size: 25px 16px;
        }

.online-menu {
    background-color: #fbfbfb;
    position: absolute;
    top: 0;
    right: 15px;
    height: 80px;
    padding: 0 15px;
}

    .online-menu .online-menu-login {
        padding: 8px 0;
    }

    .online-menu .online-menu-title {
        font-size: 14px;
        font-weight: 600;
        color: #1f2346;
        line-height: 1;
        margin-bottom: 8px;
    }

    .online-menu .online-menu-buttons {
        display: flex;
    }

        .online-menu .online-menu-buttons .qs-btn {
            font-size: 16px;
            padding: 6px 16px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
            border-radius: 3px;
            font-weight: 600;
            margin-right: 10px;
        }

            .online-menu .online-menu-buttons .qs-btn:last-child {
                margin-right: 0;
            }

            .online-menu .online-menu-buttons .qs-btn:hover {
                background-color: #94d60a;
            }

    .online-menu .online-menu-user {
        display: flex;
        padding: 16px 0;
    }

    .online-menu .online-menu-user-image {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        -webkit-border-radius: 48px;
        -moz-border-radius: 48px;
        -ms-border-radius: 48px;
        -o-border-radius: 48px;
        border-radius: 48px;
        overflow: hidden;
    }

        .online-menu .online-menu-user-image img {
            display: block;
            max-width: 100%;
        }

    .online-menu .online-menu-user-action {
        margin-left: 10px;
    }

    .online-menu .online-menu-username {
        display: block;
        font-weight: 600;
        color: #1f2346;
        text-transform: uppercase;
    }

    .online-menu .online-menu-logout {
        display: block;
        font-size: 14px;
        line-height: 1;
        color: #333;
        margin-top: 4px;
    }

.mega-menu {
    display: none;
    background-color: #f3f3f3;
    box-shadow: 0px 4px 8px -3px rgba(17, 17, 17, 0.06);
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 110;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 200ms ease-out;
}

    .mega-menu.open {
        opacity: 1;
        height: auto;
        transition: all 200ms ease-in;
    }

.mega-menu-section {
    display: none;
    position: relative;
    top: 0;
    left: 294px;
    padding: 40px 0;
    width: 980px;
}

@media screen and (min-width: 1200px) {
    .mega-menu-section {
        width: 1024px;
    }
}

.mm-row {
    margin-top: 30px;
}

.mm-columns {
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
}

    .mm-columns .mm-column {
        flex: 1 1;
        padding: 0 20px;
    }

    .mm-columns .mm-column--border-left {
        border-left: 1px solid #ccc;
    }

    .mm-columns .mm-column--single {
        flex: 0 0 255px;
    }

    .mm-columns.mm-columns--narrow {
        margin-left: -10px;
        margin-right: -10px;
    }

        .mm-columns.mm-columns--narrow .mm-column {
            padding: 0 10px;
        }

.mm-title {
    color: #eb1c74;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

    .mm-title a {
        color: #1f2346;
        padding: 2px 0;
    }

        .mm-title a:hover {
            color: #eb1c74;
            border-bottom: 1px solid #eb1c74;
            border-top: 1px solid #eb1c74;
            padding: 6px 0;
        }

    .mm-title i {
        position: relative;
        top: 2px;
        margin-left: 5px;
        border: none;
    }

.mm-text {
    font-size: 0.875rem;
}

.mm-menu li {
    display: block;
    margin-bottom: 8px;
}

    .mm-menu li a {
        display: block;
        color: #333;
    }

        .mm-menu li a:hover {
            color: #eb1c74;
        }

    .mm-menu li:last-child {
        margin-bottom: 0;
    }

.mm-image-section {
    max-width: 220px;
    position: relative;
}

    .mm-image-section .badge {
        position: absolute;
        top: -6px;
        left: -10px;
    }

    .mm-image-section img {
        display: block;
        max-width: 100%;
    }

.mm-graphic {
    display: block;
    position: relative;
    padding: 20px 15px;
    height: 180px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

    .mm-graphic.mm-graphic--blue {
        background-color: #1f2346;
    }

    .mm-graphic.mm-graphic--light-blue {
        background-color: #383f7e;
    }

    .mm-graphic.mm-graphic--green {
        background-color: #94d60a;
    }

    .mm-graphic.mm-graphic--pink {
        background-color: #eb1c74;
    }

    .mm-graphic .mm-graphic-title {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
    }

    .mm-graphic .mm-graphic-text {
        display: block;
        margin-top: 4px;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.8);
    }

        .mm-graphic .mm-graphic-text.mm-graphic-text--dark {
            color: rgba(0, 0, 0, 0.64);
        }

    .mm-graphic img {
        position: absolute;
        display: block;
        max-height: 72px;
        bottom: 15px;
        right: 15px;
        transition: all 200ms ease-out;
    }

    .mm-graphic:hover img {
        transform: translateY(-6px);
    }

    .mm-graphic.mm-graphic--short {
        height: 140px;
    }

        .mm-graphic.mm-graphic--short .mm-graphic-text {
            padding-right: 80px;
        }

.mm-call {
    display: block;
    margin-top: 20px;
    color: #1f2346;
}

    .mm-call .mm-call-title {
        display: block;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
    }

    .mm-call .mm-call-phone {
        display: block;
        font-family: "Open Sans", sans-serif;
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        margin-top: 8px;
    }

.mm-more {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #eb1c74;
    margin-top: 10px;
}

    .mm-more:hover {
        color: #1f2346;
    }

.mm-column .qs-btn {
    font-size: 16px;
    padding: 10px 24px;
    min-width: 180px;
    font-weight: 600;
}

.mm-user {
    text-align: center;
    padding-top: 20px;
}

    .mm-user p {
        font-size: 0.875rem;
        margin: 10px 0;
    }

        .mm-user p:first-child {
            margin-top: 0;
        }

.mm-application p {
    margin-bottom: 10px;
}

.mm-button {
    margin-top: 10px;
}

.mm-netwok-item {
    display: block;
    margin-bottom: 20px;
}

    .mm-netwok-item .mm-netwok-logo {
        display: block;
        height: 28px;
        margin-bottom: 2px;
        transition: all 200ms ease-out;
    }

    .mm-netwok-item:hover .mm-netwok-logo {
        transform: translateY(-2px);
    }

    .mm-netwok-item .mm-netwok-text {
        font-size: 0.875rem;
        color: #000;
    }

/* Menu Button */
.mobile-menu-button {
    position: relative;
    height: 60px;
    color: #1f2346;
    padding: 10px 0;
    text-align: center;
}

    .mobile-menu-button .mobile-menu-button-icon {
        display: block;
        font-size: 24px;
        margin-bottom: 4px;
    }

    .mobile-menu-button .mobile-menu-button-text {
        display: block;
        font-size: 11px;
        font-weight: 700;
    }

/* Close Button */
.close-button {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    color: transparent;
}

    .close-button::before,
    .close-button::after {
        content: "";
        position: absolute;
        width: 3px;
        height: 30px;
        top: 15px;
        left: 50%;
        background: #fff;
    }

    .close-button::before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .close-button::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.header-call {
    display: block;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 13px 24px;
    color: #fff !important;
}

    .header-call .header-call-title {
        display: block;
        font-size: 16px;
    }

    .header-call .header-call-phone {
        font-size: 20px;
        font-weight: 600;
    }

/* Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 160;
    width: 300px;
    height: 100%;
    background: #1f2346;
    padding: 60px 0 80px 0;
    -webkit-transform: translate3d(320px, 0, 0);
    transform: translate3d(320px, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu-container {
    height: 100%;
    overflow-y: auto;
}

    .mobile-menu-container ul li a {
        display: block;
        color: rgba(255, 255, 255, 0.75);
        padding: 12px 36px 12px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

        .mobile-menu-container ul li a:hover {
            color: white;
        }

        .mobile-menu-container ul li a .badge {
            position: relative;
            top: -4px;
            left: 2px;
        }

        .mobile-menu-container ul li a:after {
            position: absolute;
            display: block;
            content: "\41";
            font-family: "quick-b2c" !important;
            top: 12px;
            right: 24px;
            transition: all 200ms ease-out;
        }

        .mobile-menu-container ul li a.open:after {
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            transform: rotate(90deg);
        }

    .mobile-menu-container ul li .menu-item-icon {
        display: flex;
        align-items: center;
    }

        .mobile-menu-container ul li .menu-item-icon .menu-icon {
            font-size: 18px;
            margin-right: 10px;
        }

    .mobile-menu-container ul li .sub-menu {
        display: none;
    }

        .mobile-menu-container ul li .sub-menu li a {
            padding: 12px 0 12px 36px;
            background-color: rgba(0, 0, 0, 0.1);
        }

            .mobile-menu-container ul li .sub-menu li a:after {
                display: none;
            }

        .mobile-menu-container ul li .sub-menu ul li a {
            padding: 12px 0 12px 64px;
        }

    .mobile-menu-container .online-menu {
        position: relative;
        right: 0;
        float: none;
        height: auto;
        width: 100%;
        padding: 0 24px;
        background-color: transparent;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .mobile-menu-container .online-menu .online-menu-login {
            padding: 16px 0;
        }

        .mobile-menu-container .online-menu .online-menu-title {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.5;
        }

        .mobile-menu-container .online-menu .online-menu-buttons {
            display: flex;
        }

            .mobile-menu-container .online-menu .online-menu-buttons .qs-btn {
                flex: 1;
            }

        .mobile-menu-container .online-menu .online-menu-username {
            color: rgba(255, 255, 255, 0.75);
        }

        .mobile-menu-container .online-menu .online-menu-logout {
            color: rgba(255, 255, 255, 0.75);
        }

/* Shown menu */
.show-menu .mobile-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.blocker {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
    opacity: 0;
    background-color: #1f2346;
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .blocker {
    visibility: visible;
    opacity: 0.2;
}

@media screen and (min-width: 992px) {
    body {
        padding-top: 80px;
    }

    .header {
        height: 80px;
    }

        .header .logo {
            display: block;
            margin: 10px 30px 10px 0;
        }

            .header .logo img {
                height: 60px;
            }
    /* Menu Button */
    .mobile-menu-button {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

        .mobile-menu-button .mobile-menu-button-icon {
            font-size: 32px;
            margin-bottom: 4px;
        }

        .mobile-menu-button .mobile-menu-button-text {
            font-size: 16px;
        }

    .mega-menu {
        display: block;
    }

    .desktop-menu {
        display: block;
    }

    .mobile-menu-button {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .blocker {
        display: none;
    }
}

@media screen and (min-width: 1300px) {
    .top-menu ul li a {
        padding: 0 20px;
    }
}

.widget .widget-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.widget .widget-menu li {
    margin-bottom: 5px;
}

    .widget .widget-menu li:last-child {
        margin-bottom: 0;
    }

    .widget .widget-menu li img {
        display: inline-block;
        vertical-align: top;
        width: 40px;
        margin: 5px 5px 0 0;
    }

    .widget .widget-menu li.image span {
        display: inline-block;
    }

.footer {
    background: #262847;
    font-family: "Open Sans", sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

    .footer a {
        color: rgba(255, 255, 255, 0.7);
    }

        .footer a:hover {
            color: white;
        }

    .footer .widget .widget-title {
        color: #fff;
    }

.footer-top {
    padding: 40px 0 20px 0;
}

    .footer-top .row {
        display: flex;
        flex-flow: row wrap;
    }

        .footer-top .row [class^="col-"] {
            margin-bottom: 20px;
        }

.footer-call {
    display: block;
    margin-top: 20px;
    color: #fff !important;
}

    .footer-call .footer-call-title {
        display: block;
        font-size: 16px;
    }

    .footer-call .footer-call-phone {
        font-size: 20px;
        font-weight: 600;
    }

.footer-contact .contact-address {
    margin-bottom: 10px;
}

.footer-contact .contact-email {
    display: block;
}

.footer-contact .contact-information b {
    font-weight: 600;
}

.footer-social {
    margin-top: 20px;
}

    .footer-social li {
        display: inline-block;
        margin-right: 10px;
    }

        .footer-social li a i {
            font-size: 32px;
        }

        .footer-social li a:hover {
            color: #94d60a;
        }

        .footer-social li:last-child {
            margin: 0;
        }

.footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    font-size: 14px;
}

.bottom-menu {
    float: right;
}

    .bottom-menu li {
        display: inline-block;
        margin-right: 15px;
    }

        .bottom-menu li:last-child {
            margin-right: 0;
        }

@media screen and (max-width: 992px) {
    .footer-bottom {
        text-align: center;
    }

    .bottom-menu {
        float: none;
        margin: 10px auto 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        text-align: center;
    }

    .footer-bottom {
        padding-bottom: 80px;
    }

    .bottom-menu li {
        display: block;
        margin: 0;
    }
}

.footer-network {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .footer-network a {
        width: 120px;
        height: 40px;
        margin: 10px 10px;
        padding: 10px 15px;
        background: white;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
    }

        .footer-network a img {
            display: block;
            height: 100%;
            margin: auto;
        }

.footer-company-info {
    font-size: 0.9rem;
}

    .footer-company-info td {
        text-align: left;
    }

        .footer-company-info td:first-child {
            width: 60%;
        }

        .footer-company-info td:last-child {
            width: 40%;
        }

@media (min-width: 768px) {
    .footer-network {
        flex-wrap: nowrap;
    }

        .footer-network a {
            width: 160px;
            height: 50px;
        }
}

form .error,
form .parsley-errors-list {
    color: #f87669 !important;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

form .inline-select {
    margin-bottom: 20px;
}

b[role="presentation"] {
    display: none;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 16px;
    height: 39px;
    line-height: 39px;
    color: #bdbdbd;
}

.select2-selection__arrow:before {
    font-family: "quick-b2c" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

.select2-selection__arrow:before {
    content: "\66";
    line-height: 39px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 32px;
}

.form-row .custom-select {
    color: #888888;
    border-color: #bdbdbd;
}

    .form-row .custom-select:hover, .form-row .custom-select.active {
        border-color: #eb1c74;
    }

.form-row .custom-select2 {
    width: 100%;
}

.form-row #payment-options div {
    display: inline-block;
}

.form-row .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

    .form-row .input-group .input-group-addon {
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1;
        color: #ffffff;
        text-align: center;
        background-color: #eb1c74;
        border: none;
        border-radius: 4px;
        width: 1%;
        white-space: nowrap;
        vertical-align: middle;
        display: table-cell;
    }

        .form-row .input-group .input-group-addon.addon-large {
            font-size: 18px;
        }

        .form-row .input-group .input-group-addon:first-child {
            border-right: 0;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            position: relative;
            left: 2px;
        }

        .form-row .input-group .input-group-addon:last-child {
            border-right: 0;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            position: relative;
            right: 2px;
        }

.form-row .radio-custom input[type="radio"] {
    display: none;
}

.form-row .radio-custom label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 42px;
    margin-right: 32px;
    line-height: 32px;
}

    .form-row .radio-custom label:before {
        content: "";
        display: inline-block;
        width: 32px;
        height: 32px;
        margin-right: 10px;
        position: absolute;
        left: 0;
        top: 0px;
        border: 2px #eb1c74 solid;
    }

    .form-row .radio-custom label:before {
        border-radius: 32px;
    }

    .form-row .radio-custom label:after {
        content: "";
        display: none;
        width: 20px;
        height: 20px;
        position: absolute;
        background-color: #94d60a;
        left: 6px;
        top: 6px;
        border-radius: 24px;
    }

.form-row .radio-custom input[type="radio"]:checked + label:after {
    display: block;
}

.form-row .grid-2 {
    width: 50%;
}

    .form-row .grid-2:nth-child(odd) {
        padding-right: 15px;
    }

    .form-row .grid-2:nth-child(even) {
        padding-left: 15px;
    }

.form-row .grid-1 {
    width: 100%;
}

.form-row .grid-3 {
    width: 33.333333%;
}

.form-row .grid-4 {
    width: 25%;
}

.form-row .input-wrapper.input-wrapper-special .error,
.form-row .input-wrapper.input-wrapper-special .parsley-errors-list {
    position: absolute;
}

.form-row .input-wrapper {
    margin-bottom: 25px;
}

    .form-row .input-wrapper .error,
    .form-row .input-wrapper .parsley-errors-list {
        color: #f87669 !important;
        font-size: 14px;
        font-weight: 600;
        display: block;
    }

        .form-row .input-wrapper .error.ruhsat-error-container {
            clear: both;
        }

            .form-row .input-wrapper .error.ruhsat-error-container .parsley-errors-list {
                float: left;
                margin-right: 18px;
            }

    .form-row .input-wrapper label {
        display: block;
        margin-bottom: 10px;
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
        color: #888888;
        position: relative;
        padding-right: 30px;
    }

        .form-row .input-wrapper label span.hint--bottom {
            position: absolute;
            right: 0;
            top: 2px;
            text-align: center;
            width: 20px;
            height: 20px;
            line-height: 20px;
            font-size: 14px;
            display: inline-block;
            border-radius: 10px;
            background: #94d60a;
            color: #fff;
            margin-left: 5px;
        }

        .form-row .input-wrapper label.checkbox-label {
            font-weight: 100;
            color: #444;
            font-family: "Raleway", sans-serif;
            display: inline;
            min-height: auto !important;
        }

    .form-row .input-wrapper input[type="text"],
    .form-row .input-wrapper input[type="email"],
    .form-row .input-wrapper input[type="password"],
    .form-row .input-wrapper input[type="tel"],
    .form-row .input-wrapper textarea {
        color: #888888;
        display: block;
        width: 100%;
        height: 43px;
        background-color: #fff;
        border: 2px solid #cecece;
        border-radius: 3px;
        -webkit-appearance: none;
        background-color: #fff;
    }

        .form-row .input-wrapper input[type="text"]:hover, .form-row .input-wrapper input[type="text"]:focus,
        .form-row .input-wrapper input[type="email"]:hover,
        .form-row .input-wrapper input[type="email"]:focus,
        .form-row .input-wrapper input[type="password"]:hover,
        .form-row .input-wrapper input[type="password"]:focus,
        .form-row .input-wrapper input[type="tel"]:hover,
        .form-row .input-wrapper input[type="tel"]:focus,
        .form-row .input-wrapper textarea:hover,
        .form-row .input-wrapper textarea:focus {
            border-color: #eb1c74;
        }

        .form-row .input-wrapper input[disabled],
        .form-row .input-wrapper textarea[disabled] {
            background-color: #eeeeee;
        }

            .form-row .input-wrapper input[disabled]:hover, .form-row .input-wrapper input[disabled]:focus,
            .form-row .input-wrapper textarea[disabled]:hover,
            .form-row .input-wrapper textarea[disabled]:focus {
                border-color: #bdbdbd;
            }

    .form-row .input-wrapper.input-wrapper-ruhsat .alpha {
        width: 30%;
        float: left;
    }

    .form-row .input-wrapper.input-wrapper-ruhsat .num {
        width: 60%;
        float: right;
    }

    .form-row .input-wrapper input[type="checkbox"] {
        margin-right: 10px;
    }

    .form-row .input-wrapper textarea {
        padding: 15px 10px;
        height: 90px;
        margin-bottom: 10px;
    }

    .form-row .input-wrapper .card-details > * {
        display: inline-block !important;
        width: 48% !important;
        float: left;
    }

        .form-row .input-wrapper .card-details > *:last-child {
            float: right;
        }

    .form-row .input-wrapper .card-details > .i-cvc {
        width: 100% !important;
    }

    .form-row .input-wrapper .card-details > .credit-card-seperator {
        width: 4% !important;
    }

    .form-row .input-wrapper.--no-margin {
        margin-bottom: 0;
    }

.checkbox-wrapper {
    color: #444;
}

    .checkbox-wrapper a {
        color: #444;
        font-weight: 600;
    }

.btn-submit {
    cursor: pointer;
    height: 43px;
    line-height: 39px;
    padding-left: 15px;
    padding-right: 15px;
    color: #eb1c74;
    font-weight: 700;
    border: 2px solid #eb1c74;
    border-radius: 3px;
}

    .btn-submit.btn-secondary {
        border: 2px solid #94d60a;
        color: #94d60a;
    }

        .btn-submit.btn-secondary:hover {
            background-color: #94d60a;
            color: #fff;
        }

.proposal-form .btn-submit {
    margin-top: 20px;
}

    .proposal-form .btn-submit.btn-secondary {
        margin-top: -10px;
        margin-bottom: 40px;
    }

.proposal-form .btn-submit-no-margin {
    margin: 0;
}

.proposal-form .btn-submit-margin-bottom {
    margin: 0 0 20px 0;
}

.form-with-extra {
    display: table;
    border-collapse: separate;
    width: 100%;
}

    .form-with-extra .form-extra-container {
        display: table-cell;
        float: left;
        width: 100%;
    }

    .form-with-extra .form-extra {
        display: table-cell;
        width: 1%;
        white-space: nowrap;
        vertical-align: top;
        padding-left: 10px;
    }

.form-row .input-wrapper .radio-custom-small input[type="radio"] {
    display: none;
}

.form-row .input-wrapper .radio-custom-small label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding: 0 0 0 34px;
    margin-right: 20px;
    line-height: 24px;
}

    .form-row .input-wrapper .radio-custom-small label:last-child {
        margin-right: 0;
    }

    .form-row .input-wrapper .radio-custom-small label:before {
        content: "";
        display: block;
        width: 24px;
        height: 24px;
        position: absolute;
        left: 0;
        top: 0px;
        border: 2px #eb1c74 solid;
    }

    .form-row .input-wrapper .radio-custom-small label:before {
        border-radius: 24px;
    }

    .form-row .input-wrapper .radio-custom-small label:after {
        content: "";
        display: none;
        width: 12px;
        height: 12px;
        position: absolute;
        background-color: #94d60a;
        left: 6px;
        top: 6px;
        border-radius: 16px;
    }

.form-row .input-wrapper .radio-custom-small input[type="radio"]:checked + label:after {
    display: block;
}

.type-container {
    display: none;
}

.widget {
    margin-bottom: 20px;
}

.widget-title {
    margin-bottom: 10px;
}

.widget-box {
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
    padding: 15px 20px;
}

.bg-pink {
    background-color: #eb1c74;
    color: #fff;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.alert-sm {
    padding: 10px 12px;
    font-size: 14px;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.campaign-code-area {
    background-color: #262847;
    padding: 20px;
    border-radius: 10px;
}

    .campaign-code-area .campaign-title {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }

    .campaign-code-area label {
        color: #94d60a !important;
    }

@media screen and (max-width: 480px) {
    .campaign-code-area {
        margin-bottom: 20px;
    }
}

.dropdown-preview {
    position: relative;
    display: block;
    background: #fff;
    color: #202020;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 12px;
    border: 2px solid #cecece;
    border-radius: 4px;
    max-height: 43px;
    min-height: 43px;
    cursor: pointer;
}

.dropdown-preview-text {
    color: #888;
}

.dropdown-preview-error {
    display: none !important;
}

.dropdown-preview-icon {
    float: right;
    margin-top: 2px;
}

    .dropdown-preview-icon::before {
        color: #bebebe;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.06);
    z-index: 100;
    padding: 2px;
}

    .dropdown-content .checkbox-container {
        padding: 12px;
        color: #262847;
        white-space: nowrap;
    }

    .dropdown-content.show {
        width: calc(100% - 4px);
        transform: translateX(2px);
    }

    .dropdown-content .dropdown-row {
        width: 100%;
    }

        .dropdown-content .dropdown-row:first-child {
            padding-top: 10px;
        }

        .dropdown-content .dropdown-row:last-child {
            padding-bottom: 10px;
        }

    .dropdown-content .dropdown-row-target {
        margin-bottom: 0;
    }

    .dropdown-content .select2-container--qs .selection {
        padding: 6px 12px !important;
        font-size: 12px !important;
        margin-top: 4px !important;
        box-shadow: none;
    }

    .dropdown-content .select-button {
        margin-top: 4px;
        font-size: 12px;
        font-weight: 500;
        padding: 10px 12px;
        line-height: 1.45;
        transition: all 200ms ease-in-out;
        transition-property: box-shadow, color, padding, background, font-size;
        text-align: center;
        color: #1f2346;
        border-radius: 6px;
        color: #fff;
        width: 100%;
    }

    .dropdown-content .select-button--pink {
        background-color: #eb1c74;
    }

    .dropdown-content .select-button--blue {
        background-color: #1f2346;
    }

    .dropdown-content .dropdown-submit-container {
        border-top: 1px solid #e4e4e4;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 16px;
    }

        .dropdown-content .dropdown-submit-container .dropdown-submit-button {
            width: 50%;
            margin-top: 8px;
            margin-bottom: 8px;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 12px;
            line-height: 1.45;
            transition: all 200ms ease-in-out;
            transition-property: box-shadow, color, padding, background, font-size;
            text-align: center;
            color: #1f2346;
            border-radius: 6px;
            color: #fff;
            background-color: #eb1c74;
        }

html.modal-opened {
    overflow: hidden !important;
    width: 100%;
    height: 100%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 300;
    overflow: auto;
    display: none;
    padding: 10px;
}

    .modal-overlay .btn-close {
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 60px;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 0;
        right: 0;
    }

    .modal-overlay .modal-content {
        display: none;
        margin: 60px auto;
        background: #fff;
        position: relative;
        z-index: 301;
    }

        .modal-overlay .modal-content .form-row .input-wrapper {
            margin-bottom: 10px;
        }

        .modal-overlay .modal-content .eula label {
            font-size: 14px;
        }

        .modal-overlay .modal-content .list-view {
            list-style-type: none;
            padding: 20px;
        }

            .modal-overlay .modal-content .list-view li {
                text-align: left;
                color: #000;
                margin-bottom: 5px;
            }

                .modal-overlay .modal-content .list-view li:before {
                    background-color: #eb1c74;
                    border-radius: 50%;
                    content: "";
                    display: inline-block;
                    margin-right: 10px;
                    margin-bottom: 2px;
                    height: 6px;
                    width: 6px;
                }

.modal-instant-buy {
    max-width: 360px;
    background-color: #f0f0f0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

    .modal-instant-buy .insurance-types a {
        display: table;
        width: 100%;
        position: relative;
        background-color: #f0f0f0;
        color: #262847;
        height: 60px;
        padding: 12px 24px;
        border-bottom: 1px solid #e4e4e4;
        transition: background-color 200ms, color 200ms, border-color 200ms;
    }

        .modal-instant-buy .insurance-types a i {
            font-size: 36px;
            display: table-cell;
            vertical-align: middle;
            width: 36px;
        }

        .modal-instant-buy .insurance-types a .text {
            display: table-cell;
            vertical-align: middle;
            font-size: 14px;
            font-weight: 700;
            line-height: 18px;
            padding-left: 20px;
        }

        .modal-instant-buy .insurance-types a:hover {
            background-color: #262847;
            border-bottom-color: #262847;
            color: #fff;
        }

.modal-products {
    max-width: 640px;
    text-align: center;
}

    .modal-products h3 {
        height: 65px;
        line-height: 63px;
        background: #eb1c74;
        color: #fff;
        text-align: center;
        font-size: 24px;
    }

    .modal-products .captcha-container {
        padding: 40px 20px;
    }

        .modal-products .captcha-container .button-stroke {
            margin: 20px auto 0 auto;
            width: 140px;
            text-align: center;
            display: block;
        }

        .modal-products .captcha-container .g-recaptcha div {
            margin: 0 auto;
        }

    .modal-products .captcha-container--flex {
        display: flex;
        align-items: center;
    }

    .modal-products .select-city-container {
        padding: 40px 20px;
        text-align: left;
    }

        .modal-products .select-city-container p {
            margin-bottom: 20px;
        }

        .modal-products .select-city-container .button-stroke {
            margin: 20px auto 0 auto;
            width: 140px;
            text-align: center;
            display: block;
        }

.modal-errors,
.modal-info {
    max-width: 500px;
}

    .modal-errors.modal-credit,
    .modal-info.modal-credit {
        max-width: 600px;
    }

    .modal-errors.error-large,
    .modal-info.error-large {
        max-width: 600px;
    }

    .modal-errors h3,
    .modal-info h3 {
        height: 65px;
        line-height: 63px;
        background: #eb1c74;
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 400;
    }

    .modal-errors .modal-text,
    .modal-info .modal-text {
        padding: 35px;
        text-align: center;
    }

        .modal-errors .modal-text h4,
        .modal-info .modal-text h4 {
            margin-bottom: 15px;
        }

        .modal-errors .modal-text a:not(.button),
        .modal-info .modal-text a:not(.button) {
            font-family: "Open Sans", sans-serif;
            color: #94d60a;
            font-weight: 700;
        }

            .modal-errors .modal-text a:not(.button):hover,
            .modal-info .modal-text a:not(.button):hover {
                color: #eb1c74;
            }

        .modal-errors .modal-text .form-label,
        .modal-info .modal-text .form-label {
            text-align: left;
        }

        .modal-errors .modal-text .button-stroke,
        .modal-info .modal-text .button-stroke {
            margin-top: 15px;
            width: 100%;
            display: block;
            text-align: center;
        }

        .modal-errors .modal-text .modal-note,
        .modal-info .modal-text .modal-note {
            margin-top: 20px;
        }

            .modal-errors .modal-text .modal-note p,
            .modal-info .modal-text .modal-note p {
                font-size: 14px;
            }

            .modal-errors .modal-text .modal-note a,
            .modal-info .modal-text .modal-note a {
                font-size: 18px;
            }

.modal-info-p {
    height: 65px;
    line-height: 63px;
    background: #eb1c74;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.modal-damage.large {
    max-width: 800px;
    max-height: 580px;
    overflow: auto;
}

.modal-damage h3 {
    height: 65px;
    line-height: 63px;
    background: #eb1c74;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.modal-damage .modal-text {
    padding: 30px;
    text-align: left;
}

    .modal-damage .modal-text h4,
    .modal-damage .modal-text h5,
    .modal-damage .modal-text p,
    .modal-damage .modal-text ul {
        margin-bottom: 15px;
    }

    .modal-damage .modal-text h4 {
        font-size: 24px;
        font-weight: 400;
    }

    .modal-damage .modal-text h5 {
        font-size: 18px;
    }

    .modal-damage .modal-text p.modal-heading {
        color: #eb1c74;
        font-weight: 600;
    }

    .modal-damage .modal-text p.footnote {
        font-size: 14px;
    }

        .modal-damage .modal-text p.footnote span {
            font-size: 24px;
        }

    .modal-damage .modal-text a {
        font-family: "Open Sans", sans-serif;
        color: #94d60a;
        font-weight: 700;
    }

    .modal-damage .modal-text ul {
        list-style-type: circle;
        margin-left: 20px;
        margin-top: 20px;
    }

.modal-form {
    max-width: 770px;
    width: 100%;
}

    .modal-form .modal-info {
        width: 260px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(/Content/images/modal-bg.png);
        color: #fff;
    }

        .modal-form .modal-info .info-inner {
            padding: 20px;
        }

            .modal-form .modal-info .info-inner h4 {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .modal-form .modal-info .info-inner p {
                font-size: 14px;
            }

    .modal-form .form {
        width: calc(100% - 260px);
    }

        .modal-form .form .tabs a {
            width: 50%;
            display: block;
            text-align: center;
            height: 60px;
            line-height: 60px;
            background: #e1e1e1;
            color: #aaaaaa;
            font-weight: 500;
        }

            .modal-form .form .tabs a.active {
                background: #eb1c74;
                color: #fff;
            }

        .modal-form .form form {
            padding: 60px 35px;
        }

        .modal-form .form .login-options {
            margin-bottom: 30px;
            position: relative;
        }

            .modal-form .form .login-options a {
                color: #444;
            }

                .modal-form .form .login-options a:hover {
                    color: #eb1c74;
                }

        .modal-form .form .damage-insurance,
        .modal-form .form .damage-kasko {
            padding-top: 0;
        }

        .modal-form .form .with-padding {
            padding: 60px 35px;
            padding-bottom: 0;
        }

        .modal-form .form .button-stroke {
            margin-top: 15px;
            padding-top: 8px;
            padding-bottom: 8px;
            text-align: center;
        }

            .modal-form .form .button-stroke.btn-fb {
                margin-top: 40px;
                color: #0b57b1 !important;
                border-color: #0b57b1;
            }

        .modal-form .form #agency-login-options {
            padding: 44px 21px;
        }

            .modal-form .form #agency-login-options #new-qport {
                padding: 1rem;
                border: 1px solid #eb1c74;
            }

                .modal-form .form #agency-login-options #new-qport > h5 {
                    margin-bottom: 0.75rem;
                }

                .modal-form .form #agency-login-options #new-qport > p {
                    margin-bottom: 1rem;
                }

            .modal-form .form #agency-login-options #legacy-login {
                margin-top: 1.5rem;
                padding: 1rem;
                border: 1px solid #e4e4e4;
            }

                .modal-form .form #agency-login-options #legacy-login > h5 {
                    margin-bottom: 0.75rem;
                }

                .modal-form .form #agency-login-options #legacy-login > p {
                    margin-bottom: 1rem;
                }

.modal-helper {
    max-width: 640px;
    text-align: center;
}

.modal-helper-image {
    display: block;
    max-width: 100%;
}

.modal-content .small-text {
    color: #7d7d7d;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0;
}

.modal-content .big-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.modal-big {
    max-width: 800px;
}

.modal-top {
    display: table;
    width: 100%;
    height: 60px;
    background: #1f2346;
}

    .modal-top h3 {
        display: table-cell;
        vertical-align: middle;
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

.modal-top--pink {
    background: #eb1c74;
}

.modal-body {
    padding: 30px;
}

@media screen and (max-width: 768px) {
    .modal-form .modal-info {
        display: none;
    }

    .modal-products .insurance-type a {
        width: 120px;
        font-size: 12px;
        padding: 10px 0;
    }

        .modal-products .insurance-type a i {
            border: 3px solid #eb1c74;
            color: #eb1c74;
            font-size: 24px;
            width: 42px;
            height: 42px;
            line-height: 36px;
        }
}

@media screen and (max-width: 480px) {
    .modal-top {
        height: 48px;
    }

        .modal-top h3 {
            font-size: 18px;
        }

    .modal-products {
        max-width: 340px;
    }

        .modal-products .insurance-type {
            padding: 20px;
        }

            .modal-products .insurance-type a {
                width: 90px;
            }
}

@media screen and (max-width: 320px) {
    .modal-products .insurance-type {
        padding: 10px;
    }
}

.credit-card-image-item {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.credit-card-image-list {
    display: flex;
    margin: 0 -5px;
    justify-content: center;
}

    .credit-card-image-list .credit-card-image-list-item {
        padding: 0 5px;
    }

.modal-actions {
    padding: 20px 25px;
}

.modal-bs-general {
    text-align: center;
    padding: 40px 0;
}

    .modal-bs-general .modal-bs-general_icon {
        font-size: 32px;
        margin-bottom: 20px;
        background: #1f2346;
        color: #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        text-align: center;
        padding: 16px;
    }

    .modal-bs-general .modal-bs-general_title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal-bs-general .modal-bs-general_content {
        padding: 0 30px;
    }

        .modal-bs-general .modal-bs-general_content p {
            margin-bottom: 10px;
        }

            .modal-bs-general .modal-bs-general_content p:last-child {
                margin-bottom: 0;
            }

.timeout-counter {
    font-size: 2rem;
    font-weight: 700;
    color: #888;
}

.modal-link {
    color: #eb1c74;
    font-weight: 700;
}

.notification {
    height: 100%;
    padding: 50px 0;
}

    .notification .notification-page-title {
        text-align: center;
        margin-bottom: 50px;
    }

        .notification .notification-page-title h2 {
            text-align: center;
            color: #eb1c74;
            font-size: 32px;
            margin-bottom: 30px;
        }

        .notification .notification-page-title p {
            color: #262847;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .notification .notification-page-title .box {
            max-width: 360px;
            margin: auto;
        }

        .notification .notification-page-title h3 {
            color: #262847;
            font-size: 18px;
        }

        .notification .notification-page-title a {
            color: #94d60a;
            font-family: "Open Sans", sans-serif;
            font-size: 18px;
            font-weight: 700;
        }

            .notification .notification-page-title a:hover {
                color: #eb1c74;
            }

.hasar-belge {
    background-color: #fff;
    border: 2px solid #94d60a;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 25px;
}

    .hasar-belge .hasar-belge-modal {
        color: #656464;
        padding: 10px 0;
        display: block;
        float: left;
        font-weight: 500;
        border-bottom: 1px solid #e4e4e4;
        text-align: center;
    }

        .hasar-belge .hasar-belge-modal:hover {
            color: #141526;
            text-decoration: underline;
        }

        .hasar-belge .hasar-belge-modal:last-child {
            border: none;
        }

.type-selector {
    margin-bottom: 50px;
}

.type-title,
.form-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.insurance-forms {
    max-width: 480px;
    margin: 0 auto;
}

.item-list {
    display: flex;
    justify-content: center;
}

    .item-list .item {
        cursor: pointer;
        text-align: center;
        width: 200px;
    }

        .item-list .item .item-icon {
            display: block;
            margin: 0 auto 20px auto;
            width: 128px;
            height: 128px;
            border: 2px solid #ddd;
            color: #ddd;
            transition: all 200ms ease-in-out;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
        }

            .item-list .item .item-icon i {
                display: block;
                text-align: center;
                font-size: 64px;
                line-height: 128px;
            }

            .item-list .item .item-icon [class^="icon-"]:before,
            .item-list .item .item-icon [class*=" icon-"]:before {
                line-height: inherit;
            }

        .item-list .item p {
            font-size: 18px;
            transition: all 200ms ease-in-out;
        }

        .item-list .item.active .item-icon {
            color: #94d60a;
            border-color: #94d60a;
        }

        .item-list .item.out .item-icon {
            transform: scale(0, 0);
        }

        .item-list .item.out p {
            opacity: 0;
        }

        .item-list .item.in .item-icon {
            transform: scale(1, 1);
        }

        .item-list .item.in p {
            opacity: 1;
        }

        .item-list .item:hover .item-icon {
            color: #94d60a;
            border-color: #94d60a;
            transform: scale(1.1, 1.1);
        }

    .item-list .item-full {
        flex: 1;
    }

.box {
    border: 2px solid transparent;
    background: #f5f5f5;
    padding: 20px 30px;
    margin-bottom: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

    .box:last-child {
        margin-bottom: 0;
    }

    .box.box-bordered {
        border-color: #ddd;
        background-color: transparent;
    }

    .box p {
        text-align: center;
    }

    .box a {
        font-family: "Open Sans", sans-serif;
        color: #eb1c74;
    }

        .box a:hover {
            color: #94d60a;
        }

    .box.box--blue {
        background-color: #1f2346;
        color: #fff;
    }

@media screen and (max-width: 768px) {
    .notification {
        margin-top: 60px;
        padding: 50px 0;
    }

    .item-list {
        flex-flow: row wrap;
    }

        .item-list .item {
            width: 140px;
            margin-bottom: 20px;
        }

            .item-list .item .item-icon {
                margin: 0 auto 15px auto;
                width: 96px;
                height: 96px;
            }

                .item-list .item .item-icon i {
                    font-size: 48px;
                    line-height: 96px;
                }

            .item-list .item p {
                font-size: 16px;
            }
}

@media screen and (max-width: 480px) {
    .notification {
        padding: 30px 0;
    }

    .type-selector {
        margin-bottom: 30px;
    }

    .item-list .item {
        width: 140px;
    }

        .item-list .item .item-icon {
            margin: 0 auto 10px auto;
            width: 72px;
            height: 72px;
        }

            .item-list .item .item-icon i {
                font-size: 36px;
                line-height: 72px;
            }

    .item-list .item-full {
        text-align: left;
        flex: initial;
        justify-content: left;
        align-items: center;
        width: 100%;
        display: flex;
    }

        .item-list .item-full .item-icon {
            flex: 0 0 72px;
            margin: 0 20px 0 0;
        }

    .box {
        padding: 10px 15px;
    }

        .box p {
            font-size: 14px;
        }
}

.hint--home--holder {
    position: absolute;
    display: block;
    top: 12px;
    right: 12px;
}

    .hint--home--holder .hint--home {
        text-align: center;
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 14px;
        display: inline-block;
        border-radius: 10px;
        background: #94d60a;
        color: #fff;
        position: absolute;
        top: 0;
        right: 0;
    }

    .hint--home--holder:before {
        display: none;
    }

.hint--bottom:hover:before {
    border-bottom-color: #262847;
}

.hero {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    color: #fff;
}

@media (max-width: 850px) {
    .hero {
        padding-top: 20px;
    }
}

.hero h1,
.hero span.heading-1 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.hero p {
    font-size: 24px;
}

    .hero p span {
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
    }

.hero .form {
    padding: 40px 0;
}

    .hero .form .checkbox {
        margin-top: 10px;
        text-align: left;
        font-size: 14px;
    }

        .hero .form .checkbox.licence-checkbox {
            font-size: 16px;
        }

        .hero .form .checkbox input {
            margin-right: 3px;
        }

    .hero .form#formKonut .info-link {
        color: #fff;
        margin-top: 0;
    }

        .hero .form#formKonut .info-link:hover {
            color: #94d60a;
        }

    .hero .form input[type="text"],
    .hero .form input[type="email"],
    .hero .form input[type="tel"] {
        display: block;
        text-align: center;
        width: 200px;
        height: 45px;
        font-size: 16px;
        background-color: #fff;
        border-radius: 3px;
        margin-bottom: 10px;
        padding-left: 7px;
        padding-right: 7px;
    }

        .hero .form input[type="text"].email,
        .hero .form input[type="email"].email,
        .hero .form input[type="tel"].email {
            width: 240px;
            padding-right: 32px;
        }

    .hero .form .licence-plate {
        font-size: 24px !important;
        font-weight: 600;
        text-transform: uppercase;
    }

        .hero .form .licence-plate::-webkit-input-placeholder {
            font-size: 16px;
            font-weight: 400;
            position: relative;
            top: -3px;
            text-transform: none;
            line-height: 41px;
        }

        .hero .form .licence-plate::-moz-placeholder {
            font-size: 16px;
            font-weight: 400;
            position: relative;
            top: -3px;
            text-transform: none;
            line-height: 41px;
        }

        .hero .form .licence-plate:-ms-input-placeholder {
            font-size: 16px;
            font-weight: 400;
            position: relative;
            top: -3px;
            text-transform: none;
            line-height: 41px;
        }

        .hero .form .licence-plate:-moz-placeholder {
            font-size: 16px;
            font-weight: 400;
            position: relative;
            top: -3px;
            text-transform: none;
            line-height: 41px;
        }

    .hero .form #plate-empty .select2-container--default .select2-selection--single,
    .hero .form #plate-empty .select2-container--default.select2-container--open
    .select2-selection--single,
    .hero .form #plate-empty .select2-container--default.select2-container--open
    .select2-selection--single:hover,
    .hero .form #plate-empty .select2-container--default .select2-selection--single:hover,
    .hero .form #plate-empty-2 .select2-container--default .select2-selection--single,
    .hero .form #plate-empty-2 .select2-container--default.select2-container--open
    .select2-selection--single,
    .hero .form #plate-empty-2 .select2-container--default.select2-container--open
    .select2-selection--single:hover,
    .hero .form #plate-empty-2 .select2-container--default .select2-selection--single:hover {
        border: none;
        height: auto;
        padding-top: 4px;
        border-radius: 3px;
    }

    .hero .form #plate-empty span,
    .hero .form #plate-empty-2 span {
        color: #ababab;
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        text-transform: capitalize;
    }

    .hero .form .hero-margin {
        height: 44px;
    }

    .hero .form .info-link {
        margin-bottom: 0px;
    }

    .hero .form .licence-plate {
        text-align: left !important;
        width: 200px;
        height: 45px;
        padding-left: 34px !important;
        background: url(/Content/images/plate.png) #fff bottom left no-repeat;
        background-size: 26px 46px;
        border-radius: 3px;
    }

    .hero .form .hero-errors {
        position: absolute;
        z-index: 10;
        background-color: #dc3c3c;
        color: #fff;
        font-size: 16px;
        padding: 10px 20px;
        text-align: left;
        margin: 20px 0 0 -45px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
    }

        .hero .form .hero-errors.hero-errors-single {
            margin-left: 0;
            margin-top: 20px;
        }

    .hero .form .eula {
        font-size: 12px;
        color: #dddddd;
        margin: 10px auto;
        max-width: 520px;
    }

        .hero .form .eula a {
            color: #dddddd;
            font-weight: 600;
        }

            .hero .form .eula a:hover {
                text-decoration: underline;
                color: #94d60a;
            }

        .hero .form .eula .checkbox-container {
            display: block;
            padding: 4px 0;
        }

            .hero .form .eula .checkbox-container label {
                text-align: left;
            }

.form-hero-container {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

    .form-hero-container .form-hero-column {
        position: relative;
        margin-right: 20px;
    }

        .form-hero-container .form-hero-column:last-child {
            margin-right: 0;
        }

.eula-modal a {
    color: #484848;
    font-weight: 600;
}

    .eula-modal a:hover {
        color: #eb1c74;
    }

.hero-image {
    display: none;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

    .hero-image.active {
        display: block;
    }

.hero {
    position: relative;
    overflow: hidden;
}

    .hero.no-object-fit {
        background-size: cover;
        background-position: center center;
    }

        .hero.no-object-fit .hero-image {
            display: none;
        }

.overflow-unset {
    overflow: unset !important;
}

.tab-container {
    position: relative;
    z-index: 10;
}

.viewport-page-hero {
    padding-left: 250px;
}

.insurance-type-selector {
    position: absolute;
    top: 30px;
    left: 30px;
    text-align: left;
    z-index: 20;
}

    .insurance-type-selector .insurance-type-item {
        display: block;
        position: relative;
        background-color: #f0f0f0;
        padding: 12px 24px 12px 24px;
        border-bottom: 1px solid #e4e4e4;
        transition: background-color 200ms, color 200ms, border-color 200ms;
    }

        .insurance-type-selector .insurance-type-item > a {
            display: block;
            color: #262847;
        }

        .insurance-type-selector .insurance-type-item i {
            font-size: 36px;
            display: block;
            float: left;
        }

        .insurance-type-selector .insurance-type-item .text {
            display: block;
            float: left;
            font-size: 14px;
            font-weight: 700;
            line-height: 18px;
            margin-left: 20px;
            margin-right: 10px;
            max-width: 220px;
        }

        .insurance-type-selector .insurance-type-item .arrow {
            position: absolute;
            display: none;
            overflow: hidden;
            top: 0;
            opacity: 0;
            right: -29px;
            width: 30px;
            height: 60px;
            transition: opacity 200ms;
        }

            .insurance-type-selector .insurance-type-item .arrow:after {
                display: block;
                content: "";
                transform: rotate(45deg);
                background-color: #ea1c73;
                width: 60px;
                height: 60px;
                top: 0px;
                left: -40px;
                position: relative;
                -moz-border-radius: 10px;
                border-radius: 10px;
            }

        .insurance-type-selector .insurance-type-item:first-child {
            border-radius: 10px 10px 0 0;
        }

            .insurance-type-selector .insurance-type-item:first-child.active {
                border-radius: 10px 0 0 0;
            }

        .insurance-type-selector .insurance-type-item:last-child {
            border-radius: 0 0 10px 10px;
            border-bottom: none;
        }

            .insurance-type-selector .insurance-type-item:last-child.active {
                border-radius: 0 0 0 10px;
            }

        .insurance-type-selector .insurance-type-item .sub-menu {
            display: none;
            position: absolute;
            top: 0;
            left: 100%;
            width: 240px;
        }

            .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item:first-child {
                border-radius: 0 10px 0 0;
            }

                .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item:first-child.active {
                    border-radius: 0;
                }

            .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item:last-child {
                border-radius: 0 0 10px 0;
                border-bottom: none;
            }

                .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item:last-child.active {
                    border-radius: 0;
                }

        .insurance-type-selector .insurance-type-item:hover {
            background-color: #262847;
            border-bottom-color: #262847;
        }

            .insurance-type-selector .insurance-type-item:hover > a {
                color: #fff;
            }

        .insurance-type-selector .insurance-type-item.active {
            background-color: #ea1c73;
            border-bottom-color: #ea1c73;
        }

            .insurance-type-selector .insurance-type-item.active > a {
                color: #fff;
            }

            .insurance-type-selector .insurance-type-item.active .arrow {
                opacity: 1;
                display: block;
            }

@media screen and (min-width: 851px) {
    .insurance-type-selector .insurance-type-item:hover .sub-menu {
        display: block;
    }
}

.insurance-type-selector .insurance-type-item a,
.insurance-type-selector .sub-menu {
    zoom: 1;
}

    .insurance-type-selector .insurance-type-item a:before, .insurance-type-selector .insurance-type-item a:after,
    .insurance-type-selector .sub-menu:before,
    .insurance-type-selector .sub-menu:after {
        content: "";
        display: block;
        height: 0;
        overflow: hidden;
    }

    .insurance-type-selector .insurance-type-item a:after,
    .insurance-type-selector .sub-menu:after {
        clear: both;
    }

@media screen and (max-width: 1100px) {
    .viewport-page {
        padding-right: 0px;
    }
}

@media screen and (max-width: 1010px) {
    .viewport-page-hero {
        padding-left: 100px;
    }

    .insurance-type-selector .insurance-type-item {
        position: relative;
    }

        .insurance-type-selector .insurance-type-item > a .text {
            position: absolute;
            display: block;
            visibility: hidden;
            top: 0;
            left: 76px;
            margin: 0;
            min-width: 120px;
            background-color: #262847;
            padding: 12px 0;
            border-radius: 0 10px 10px 0;
            opacity: 0;
            transition: opacity 200ms;
        }

        .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item {
            background-color: #262847;
            border-color: #262847;
        }

            .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item a {
                color: #fff;
            }

        .insurance-type-selector .insurance-type-item i {
            margin-right: 0;
        }

        .insurance-type-selector .insurance-type-item .arrow {
            display: none;
        }

        .insurance-type-selector .insurance-type-item:hover .text {
            visibility: visible;
            opacity: 1;
        }

        .insurance-type-selector .insurance-type-item.active:hover .text {
            display: none;
        }

        .insurance-type-selector .insurance-type-item.insurance-type-item--has-sub > a .text {
            display: none;
        }
}

@media screen and (max-width: 850px) {
    .hero {
        background-image: none;
        background-color: #262847;
    }

    .hero-image.active {
        display: none;
    }

    .insurance-type-selector {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        margin: auto;
        max-width: 300px;
    }

        .insurance-type-selector .insurance-type-item {
            position: relative;
        }

            .insurance-type-selector .insurance-type-item > a .text {
                position: relative;
                display: block;
                visibility: visible;
                top: 0;
                left: 0;
                margin: 0 0 0 20px;
                min-width: 120px;
                background-color: transparent;
                padding: 0;
                border-radius: 0;
                opacity: 1;
            }

            .insurance-type-selector .insurance-type-item i {
                margin-right: 0;
            }

            .insurance-type-selector .insurance-type-item:first-child.active {
                border-radius: 10px 10px 0 0;
            }

            .insurance-type-selector .insurance-type-item:last-child.active {
                border-radius: 0 0 10px 10px;
            }

            .insurance-type-selector .insurance-type-item .sub-menu {
                position: relative;
                width: 100%;
                top: 0;
                left: 0;
                margin-top: 20px;
            }

                .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item:first-child {
                    border-radius: 10px 10px 0 0;
                }

                .insurance-type-selector .insurance-type-item .sub-menu .insurance-type-item:last-child {
                    border-radius: 0 0 10px 10px;
                }

            .insurance-type-selector .insurance-type-item.active {
                background-color: #f0f0f0;
                border-bottom-color: #e4e4e4;
            }

                .insurance-type-selector .insurance-type-item.active a {
                    color: #262847;
                }

                .insurance-type-selector .insurance-type-item.active .arrow {
                    display: none;
                }

                .insurance-type-selector .insurance-type-item.active:hover .text {
                    display: block;
                }

            .insurance-type-selector .insurance-type-item.insurance-type-item--has-sub > a .text {
                display: block;
            }

            .insurance-type-selector .insurance-type-item:hover {
                background-color: #eb1c74;
                border-bottom-color: #eb1c74;
            }

                .insurance-type-selector .insurance-type-item:hover a {
                    color: #fff;
                }

            .insurance-type-selector .insurance-type-item a {
                display: flex;
                align-items: center;
            }

    .tab-container {
        display: none;
    }

    .viewport-page-hero {
        padding-left: 0;
    }

    .hero .form input[type="text"],
    .hero .form input[type="email"],
    .hero .form input[type="tel"],
    .hero .form .licence-plate {
        width: 200px;
    }

        .hero .form input[type="text"].email,
        .hero .form input[type="email"].email,
        .hero .form input[type="tel"].email,
        .hero .form .licence-plate.email {
            width: 200px;
            padding-right: inherit;
        }
}

@media screen and (max-width: 768px) {
    .help {
        padding-right: 0;
    }

    .hero .form#formKonut .checkbox {
        width: 290px;
    }
}

@media screen and (max-width: 710px) {
    .hint--home--holder {
        display: none;
    }

    .licence-checkbox-1 {
        display: none;
    }

    .licence-checkbox-2 {
        display: block;
        margin: 0 auto;
        width: 280px;
        padding: 0 !important;
        margin-left: 0;
    }

    .hero .form .eula {
        line-height: 2;
        width: 280px;
    }

        .hero .form .eula [type="checkbox"] + label {
            text-align: left;
        }

    .hero .form input[type="text"],
    .hero .form input[type="email"],
    .hero .form input[type="tel"],
    .hero .form .licence-plate {
        display: block;
        float: none;
        width: 280px;
        margin: 10px auto !important;
    }

        .hero .form input[type="text"].custom-select,
        .hero .form input[type="email"].custom-select,
        .hero .form input[type="tel"].custom-select,
        .hero .form .licence-plate.custom-select {
            display: none;
        }

        .hero .form input[type="text"].email,
        .hero .form input[type="email"].email,
        .hero .form input[type="tel"].email,
        .hero .form .licence-plate.email {
            width: 280px;
            padding-right: inherit;
        }

        .hero .form input[type="text"] select,
        .hero .form input[type="email"] select,
        .hero .form input[type="tel"] select,
        .hero .form .licence-plate select {
            font-size: 16px;
            width: 100%;
            position: relative;
            top: 5px;
        }

    .hero-errors {
        margin-left: 0 !important;
        width: 80%;
    }
}

@media screen and (max-width: 550px) {
    .help {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 16px;
    }
}

.installment-plan.installment-plan-center {
    display: block;
    color: #fff;
    display: inline-block;
    margin: 30px auto;
}

    .installment-plan.installment-plan-center i,
    .installment-plan.installment-plan-center span {
        float: left;
    }

.installment-plan-pink {
    color: #eb1c74 !important;
}

.hero-tabs {
    overflow: hidden;
    margin-bottom: 20px;
}

    .hero-tabs .tab-link {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0;
        color: #262847;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        border: 1px solid #e4e4e4;
        border-width: 0 0 1px 0;
        height: 48px;
    }

        .hero-tabs .tab-link:first-child {
            -webkit-border-radius: 6px 6px 0 0;
            -moz-border-radius: 6px 6px 0 0;
            -ms-border-radius: 6px 6px 0 0;
            -o-border-radius: 6px 6px 0 0;
            border-radius: 6px 6px 0 0;
        }

        .hero-tabs .tab-link:last-child {
            -webkit-border-radius: 0 0 6px 6px;
            -moz-border-radius: 0 0 6px 6px;
            -ms-border-radius: 0 0 6px 6px;
            -o-border-radius: 0 0 6px 6px;
            border-radius: 0 0 6px 6px;
            border: none;
        }

        .hero-tabs .tab-link:hover {
            background-color: #1f2346;
            border-color: #1f2346;
            color: #fff;
        }

        .hero-tabs .tab-link.active {
            background-color: #eb1c74;
            border-color: #eb1c74;
            color: #fff;
        }

@media screen and (min-width: 768px) {
    .hero-tabs {
        display: flex;
    }

        .hero-tabs .tab-link {
            height: 54px;
            flex: 1;
            border-width: 0 1px 0 0;
        }

            .hero-tabs .tab-link:first-child {
                -webkit-border-radius: 6px 0 0 6px;
                -moz-border-radius: 6px 0 0 6px;
                -ms-border-radius: 6px 0 0 6px;
                -o-border-radius: 6px 0 0 6px;
                border-radius: 6px 0 0 6px;
            }

            .hero-tabs .tab-link:last-child {
                -webkit-border-radius: 0 6px 6px 0;
                -moz-border-radius: 0 6px 6px 0;
                -ms-border-radius: 0 6px 6px 0;
                -o-border-radius: 0 6px 6px 0;
                border-radius: 0 6px 6px 0;
                border: none;
            }
}

.section {
    padding: 40px 0;
    background-color: #fff;
}

.section--light {
    background-color: #fbfbfb;
}

.section-title {
    text-align: center;
}

    .section-title .title {
        margin-bottom: 15px;
    }

        .section-title .title:last-child {
            margin-bottom: 0;
        }

    .section-title p {
        font-size: 16px;
        color: #6e6e6e;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }

        .section-title p:last-child {
            margin-bottom: 0;
        }

.section-description p {
    font-size: 16px;
    color: #6e6e6e;
    margin-bottom: 10px;
}

    .section-description p:last-child {
        margin-bottom: 0;
    }

.section-more {
    margin-top: 20px;
    text-align: center;
}

    .section-more .qs-btn {
        padding-left: 24px;
        padding-right: 24px;
    }

/* Perks Section */
.quick-steps {
    margin: 30px 0 0 0;
}

.quick-step {
    flex: 1 1;
    background-color: #fbfbfb;
    padding: 20px 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.quick-step-top {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.quick-step-icon {
    color: #94d60a;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    margin-right: 20px;
}

.quick-step-text {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.quick-step-brand {
    color: #eb1c74;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    transition: all 400ms;
}

.quick-step-title {
    font-weight: 400;
    line-height: 1;
    color: #1f2346;
    transition: all 400ms;
}

.quick-step-content {
    color: #6e6e6e;
}

    .quick-step-content p {
        margin-bottom: 20px;
    }

        .quick-step-content p:last-child {
            margin-bottom: 0;
        }

.perks {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.perk-item {
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 30px;
}

    .perk-item:last-child {
        margin-bottom: 0;
    }

.perk-item-icon {
    font-size: 36px;
    margin-right: 20px;
    color: #94d60a;
}

.perk-item-title {
    font-size: 18px;
    color: #eb1c74;
    font-weight: 700;
}

.action-bar {
    display: flex;
    text-align: center;
    background: #eb1c74;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    align-items: center;
}

    .action-bar span {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-right: 20px;
    }

    .action-bar i {
        vertical-align: middle;
        font-size: 36px;
        color: rgba(0, 0, 0, 0.1);
    }

/* Perks Section */
.additional-services {
    margin: 30px 0 0 0;
}

.additional-service {
    flex: 1 1;
    background-color: #fbfbfb;
    padding: 20px 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.additional-service-image {
    position: relative;
    bottom: 0;
}

.additional-service-text {
    display: flex;
    text-align: left;
    flex-direction: column;
    font-size: 18px;
}

.additional-service-title {
    color: #eb1c74;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    transition: all 400ms;
    font-size: 24px;
}

.additional-service-content {
    color: #6e6e6e;
    text-align: left;
}

    .additional-service-content p {
        margin-bottom: 20px;
    }

        .additional-service-content p:last-child {
            margin-bottom: 0;
        }

/* Text Section */
.text-slider {
    margin: 30px 0 0 0;
}

    .text-slider .slide-item {
        display: flex;
        justify-content: center;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .text-slider .slide-item .text-slide-container {
            display: flex;
        }

        .text-slider .slide-item .slide-image {
            max-width: 288px;
            background-color: #f5f5f5;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
            border-radius: 3px;
            height: 300px;
            flex: 1 0 400px;
            margin-right: 60px;
        }

        .text-slider .slide-item .slide-title {
            font-size: 20px;
            color: #eb1c74;
            margin-bottom: 20px;
        }

        .text-slider .slide-item .slide-content {
            color: #121212;
        }

            .text-slider .slide-item .slide-content p {
                margin-bottom: 20px;
            }

            .text-slider .slide-item .slide-content .show-more {
                padding-left: 24px;
                padding-right: 24px;
            }

            .text-slider .slide-item .slide-content .slide-more {
                display: none;
            }

            .text-slider .slide-item .slide-content .slide-more-btn {
                text-align: center;
            }

/* Dictionary Section */
.section--dictionary .slider-container {
    position: relative;
}

    .section--dictionary .slider-container .slide-arrow-left {
        display: none;
    }

    .section--dictionary .slider-container .slide-arrow-right {
        display: none;
    }

@media screen and (min-width: 768px) {
    .section--dictionary .slider-container {
        position: relative;
    }

        .section--dictionary .slider-container .slide-arrow-left {
            left: -30px;
        }

        .section--dictionary .slider-container .slide-arrow-right {
            right: -30px;
        }
}

.slider-container {
    position: relative;
}

.dictionary-loader {
    height: 240px;
}

    .dictionary-loader .loader {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

        .dictionary-loader .loader i {
            color: #dadada;
            font-size: 36px;
            transform-origin: 50% 50% 0;
            -webkit-animation: rotateY 1s infinite linear;
            animation: rotateY 1s infinite linear;
        }

.dictionary-slider {
    transition: opacity 400ms;
    opacity: 0;
    margin: 30px 0;
}

    .dictionary-slider .slide-item {
        padding: 0 15px;
        background-color: #fff;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .dictionary-slider .slide-item > a {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 40;
        }

        .dictionary-slider .slide-item figure {
            max-width: 360px;
            margin: auto;
            box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            height: auto;
            z-index: 10;
            position: relative;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
            border-radius: 3px;
        }

            .dictionary-slider .slide-item figure:before {
                display: block;
                content: "";
                width: 100%;
                padding-top: 56.25%;
            }

            .dictionary-slider .slide-item figure > .ratio-content {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            .dictionary-slider .slide-item figure img {
                position: absolute;
                left: 0;
                top: 0;
                margin: 0;
                display: block;
                max-height: 100%;
            }

        .dictionary-slider .slide-item header {
            padding-top: 10px;
            color: #fff;
        }

            .dictionary-slider .slide-item header .slide-title {
                font-size: 18px;
                font-weight: 500;
            }

                .dictionary-slider .slide-item header .slide-title a,
                .dictionary-slider .slide-item header .slide-title a:visited {
                    color: rgba(0, 0, 0, 0.9);
                }

                    .dictionary-slider .slide-item header .slide-title a:hover,
                    .dictionary-slider .slide-item header .slide-title a:visited:hover {
                        color: black;
                    }

            .dictionary-slider .slide-item header .slide-description {
                margin-top: 10px;
                color: rgba(0, 0, 0, 0.9);
            }

            .dictionary-slider .slide-item header .btn {
                margin-top: 20px;
                text-transform: none;
            }

/* Up to Date Section */
.uptodate-item {
    display: flex;
    justify-content: center;
}

.uptodate-image {
    max-width: 288px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

    .uptodate-image img {
        max-width: 100%;
    }

.uptodate-title {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

    .uptodate-title a {
        color: #000;
    }

.section--faq .faq {
    max-width: 980px;
    margin: 30px auto 0 auto;
}

.section--faq .accordion {
    margin-bottom: 15px;
}

.section--agencies {
    background: #fbfbfb;
    border-bottom: 1px solid #dfdfdf;
}

    .section--agencies .section-title {
        margin-bottom: 30px;
    }

    .section--agencies .services-form {
        margin-top: 30px;
    }

    .section--agencies .agencies-list {
        margin-top: 30px;
        max-height: 340px;
        overflow-y: auto;
    }

.section--services {
    background: #fbfbfb;
}

    .section--services .section-title {
        margin-bottom: 30px;
    }

    .section--services .services-form {
        margin-top: 30px;
    }

    .section--services .services-list {
        margin-top: 30px;
        max-height: 340px;
        overflow-y: auto;
    }

@media screen and (min-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-title .title {
        margin-bottom: 30px;
    }

    .section-title p {
        font-size: 18px;
        max-width: 980px;
    }

    .section-description p {
        font-size: 18px;
    }

    .section-more {
        margin-top: 40px;
    }

    .quick-steps {
        display: flex;
        margin: 60px -20px 0 -20px;
    }

    .quick-step {
        margin: 0 20px;
        padding: 40px 30px;
    }

    .quick-step-top {
        align-items: center;
        justify-content: center;
    }

    .quick-step-icon {
        font-size: 48px;
    }

    .quick-step-text {
        font-size: 24px;
    }

    .quick-step-content {
        text-align: center;
    }

    .perks {
        margin-top: 60px;
        text-align: center;
        align-items: top;
    }

    .perk-item {
        display: block;
        flex: 1 0 33%;
        margin-bottom: 40px;
        padding: 0;
    }

    .perk-item-icon {
        font-size: 48px;
        margin-right: 0;
    }

    .perk-item-title {
        font-size: 24px;
    }

    .action-bar {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .action-bar span {
            font-size: 36px;
        }

        .action-bar i {
            font-size: 48px;
        }

    .dictionary-slider {
        margin: 60px 0;
    }

    .text-slider {
        margin: 60px 0 0 0;
    }

        .text-slider .slide-item .slide-title {
            font-size: 24px;
        }

    .slide-text {
        max-width: 720px;
        margin: auto;
    }

    .section--services .services-list {
        margin-top: 0;
    }

    .section--services .services-form {
        margin-top: 40px;
    }

        .section--services .services-form .form-group {
            margin-bottom: 30px;
        }

    .section--faq .faq {
        margin-top: 60px;
    }

    .section--faq .accordion {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .perk-item {
        flex: 1 0;
    }
}

.section-content {
    margin-top: 30px;
}

    .section-content p {
        font-size: 16px;
        color: #6e6e6e;
        margin-bottom: 10px;
    }

        .section-content p span {
            font-weight: 700;
        }

    .section-content img {
        display: block;
        max-width: 320px;
        margin: 0 auto 30px auto;
    }

@media screen and (min-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-content {
        margin-top: 60px;
    }

        .section-content p {
            font-size: 18px;
            margin-bottom: 20px;
        }
}

@media screen and (min-width: 992px) {
    .section-content img {
        max-width: 100%;
        margin: 0;
    }
}

.hermes-band {
    position: relative;
    display: none;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    z-index: 45;
}

    .hermes-band .award-link {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 46;
    }

    .hermes-band p {
        font-size: 18px;
    }

    .hermes-band .award-title span {
        color: #d8c87b;
    }

    .hermes-band .award-logo {
        display: block;
        height: 40px;
        margin: 15px auto;
    }

    .hermes-band .award {
        display: flex;
        justify-content: space-between;
    }

        .hermes-band .award .award-image {
            display: block;
            flex: 0 0 70px;
            position: relative;
            top: -10px;
            margin-left: 20px;
            transition: all 200ms;
        }

            .hermes-band .award .award-image img {
                display: block;
                max-width: 100%;
            }

        .hermes-band .award .award-description {
            text-align: left;
        }

    .hermes-band .award-close {
        position: relative;
        z-index: 47;
        color: #fff;
        padding: 20px;
    }

        .hermes-band .award-close:hover {
            color: #d8c87b;
        }

@media screen and (min-width: 850px) {
    .hermes-band {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100px;
    }

        .hermes-band .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            width: 100%;
            max-width: 1300px;
        }

        .hermes-band .award-logo {
            margin: auto 30px;
            height: 50px;
        }

        .hermes-band .award {
            height: 100%;
            align-items: center;
        }

            .hermes-band .award .award-image {
                top: auto;
            }

                .hermes-band .award .award-image:hover {
                    transform: translateY(-6px);
                }
}

@media screen and (min-width: 992px) {
    .award-logo {
        margin: auto 50px;
    }
}

@media screen and (min-width: 1100px) {
    .hermes-band {
        padding: 0 90px 0 0;
    }
}

.viewport-page .container {
    max-width: 1170px;
}

.notification-band {
    position: relative;
    background-color: #1f2346;
    color: #fff;
    padding: 20px 0;
    z-index: 45;
    padding-bottom: 0;
}

    .notification-band .notification-band-container {
        position: relative;
        display: flex;
    }

    .notification-band .notification-band-link {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 46;
    }

    .notification-band .notification-band-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .notification-band .notification-band-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .notification-band .notification-close {
        cursor: pointer;
        position: absolute;
        top: 50%;
        right: 0;
        z-index: 47;
        margin-top: -8px;
        color: rgba(255, 255, 255, 0.5);
        width: 16px;
        height: 16px;
        transition: all 200ms;
    }

        .notification-band .notification-close:hover {
            color: white;
        }

    .notification-band .notification-band-content {
        display: none !important;
    }

    .notification-band .notification-band-button {
        display: block;
        cursor: pointer;
        font-size: 12px;
        color: #fff;
        border: 1px solid #fff;
        padding: 6px 12px;
        text-align: center;
        flex: 0 0 50%;
        position: relative;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
    }

        .notification-band .notification-band-button.notification-band-button-no-mobile {
            display: none;
        }

        .notification-band .notification-band-button:hover {
            background: #fff;
            color: #1f2346;
        }

        .notification-band .notification-band-button:last-child {
            margin-right: 0;
        }

.bts-only-lg {
    display: none;
}

@media (max-width: 850px) {
    .notification-band-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 10px 10px;
        grid-template-areas: ". ." ". .";
    }
}

@media (min-width: 851px) {
    .notification-band {
        padding-bottom: 20px;
    }

        .notification-band .notification-band-buttons {
            flex-wrap: nowrap;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-band .notification-band-title {
            font-size: 20px;
            margin: 0;
        }

        .notification-band .notification-band-text {
            font-size: 14px;
            margin: 0;
        }

        .notification-band .notification-band-content {
            display: block !important;
        }

        .notification-band .notification-band-button {
            font-size: 14px;
            padding: 8px 12px;
            margin: 0 20px 0 0;
            text-align: center;
            flex: 0 0 auto;
        }

            .notification-band .notification-band-button:last-child {
                margin-right: 0;
                right: 0;
            }

            .notification-band .notification-band-button.notification-band-button-no-mobile {
                display: block;
            }

    .bts-only-lg {
        display: inline;
    }
}

.side-banner {
    position: relative;
    top: 40px;
    text-align: left;
}

    .side-banner a {
        display: flex;
    }

    .side-banner .side-banner-image {
        display: block;
        width: 80px;
        padding: 10px;
        background-color: #3d065a;
        transition: transform 0.5s;
    }

        .side-banner .side-banner-image img {
            display: block;
            max-width: 100%;
        }

    .side-banner .side-banner-title {
        background-color: #fff;
        padding: 10px;
        flex: 1;
        display: flex;
        align-items: center;
        transition: all 0.5s;
    }

    .side-banner .side-banner-title-text {
        font-size: 1.25rem;
        color: #3d065a;
        font-weight: 700;
        line-height: 1.4;
        transition: color 0.5s;
    }

@media (min-width: 481px) {
    .side-banner {
        position: relative;
        top: 60px;
    }
}

@media (min-width: 851px) {
    .side-banner {
        position: absolute;
        top: 280px;
        right: 0;
        z-index: 50;
        box-shadow: 0px 4px 8px -3px rgba(17, 17, 17, 0.06);
    }

        .side-banner a {
            display: block;
        }

        .side-banner .side-banner-title {
            width: 100px;
            height: 200px;
            display: block;
            position: relative;
            margin-top: 10px;
        }

        .side-banner .side-banner-title-text {
            position: absolute;
            top: 50px;
            left: -50px;
            display: block;
            width: 200px;
            height: 100px;
            padding: 15px;
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            transform: rotate(90deg);
        }

        .side-banner .side-banner-image {
            display: block;
            width: 100px;
        }

        .side-banner:hover .side-banner-image {
            transform: translate(0, 5px);
        }

        .side-banner:hover .side-banner-title {
            transform: translate(0, -5px);
            background: #3d065a;
        }

        .side-banner:hover .side-banner-title-text {
            color: #fff;
        }
}

@media (min-width: 1200px) {
    .side-banner {
        top: 120px;
    }
}

.cookie-bar {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    padding: 0 15px;
    bottom: 1rem;
    left: 0;
    transform: none;
    max-width: 270px;
}

@media (min-width: 992px) {
    .cookie-bar {
        max-width: 480px;
    }
}

.cookie-bar-card {
    background-color: white;
    padding: 1rem;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-size: 12px;
}

    .cookie-bar-card .cookie-bar-inner {
        display: flex;
        align-items: center;
    }

    .cookie-bar-card .cookie-bar-link {
        color: #94d60a;
        font-weight: 700;
    }

        .cookie-bar-card .cookie-bar-link:hover {
            color: #aff51e;
        }

.proposal-header {
    padding: 50px 0;
}

    .proposal-header .inspect {
        width: 40%;
        margin-top: 20px;
    }

        .proposal-header .inspect .title {
            font-size: 36px;
            font-weight: 700;
            color: #262847;
        }

        .proposal-header .inspect i {
            font-size: 54px;
        }

        .proposal-header .inspect a {
            font-size: 15px;
            color: #262847;
        }

            .proposal-header .inspect a i {
                position: relative;
                font-size: 18px;
                top: 3px;
            }

        .proposal-header .inspect .icon-icon-product {
            float: right;
            color: #eb1c74;
        }

    .proposal-header .proposal-steps {
        display: table;
        color: #262847;
        width: 55%;
    }

        .proposal-header .proposal-steps .cell {
            display: table-cell;
            text-align: center;
            vertical-align: center;
            text-align: center;
        }

            .proposal-header .proposal-steps .cell > * {
                display: inline-block;
                vertical-align: middle;
            }

@media screen and (max-width: 480px) {
    .proposal-header .proposal-steps .cell > * {
        vertical-align: middle;
    }
}

.proposal-header .proposal-steps .cell > picture > img {
    height: 36px;
    width: auto;
    position: relative;
}

@media screen and (max-width: 620px) {
    .proposal-header .proposal-steps .cell > picture > img {
        height: 36px;
        transform: translateY(-25%);
    }
}

@media screen and (max-width: 480px) {
    .proposal-header .proposal-steps .cell > picture > img {
        height: 30px;
        transform: translateY(-50%);
    }
}

.proposal-header .step {
    width: 103px;
    text-align: center;
    color: #94d60a;
}

    .proposal-header .step.active span {
        color: #eb1c74;
    }

    .proposal-header .step.active i {
        color: #eb1c74;
        border: 2px solid #94d60a;
    }

    .proposal-header .step.passive {
        cursor: not-allowed;
    }

        .proposal-header .step.passive span {
            color: #c7c7c7;
        }

        .proposal-header .step.passive i {
            color: #c7c7c7;
            border: 2px solid #c7c7c7;
        }

    .proposal-header .step.visited {
        cursor: pointer;
    }

        .proposal-header .step.visited:hover span {
            color: #eb1c74;
        }

        .proposal-header .step.visited:hover i {
            color: #eb1c74;
            border: 2px solid #eb1c74;
        }

    .proposal-header .step span {
        font-weight: 700;
        color: #262847;
    }

    .proposal-header .step i {
        display: block;
        text-align: center;
        width: 70px;
        height: 70px;
        border: 2px solid #c7c7c7;
        line-height: 66px;
        border-radius: 35px;
        font-size: 32px;
        margin: 0 auto 10px auto;
    }

.ssl-image {
    margin-bottom: 20px;
}

    .ssl-image img {
        display: block;
        max-height: 50px;
        max-width: 100%;
    }

.secure-image img {
    display: block;
    max-height: 50px;
    max-width: 100%;
    margin-left: auto;
}

.proposal-form {
    width: 55%;
    padding: 20px;
    margin-bottom: 50px;
    background-color: #fff;
}

    .proposal-form > h6,
    .proposal-form .form-header {
        background: #eb1c74;
        height: 35px;
        line-height: 35px;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    }

    .proposal-form .form-header-sub {
        background: #eb1c74;
        height: auto;
        padding: 10px;
        color: #fff;
        text-align: left;
        margin-bottom: 20px;
    }

        .proposal-form .form-header-sub span {
            font-weight: 700;
        }

    .proposal-form .checkbox-wrapper {
        margin: 0 0 20px 0 !important;
    }

        .proposal-form .checkbox-wrapper:last-child {
            margin-bottom: 0;
        }

        .proposal-form .checkbox-wrapper.--mt {
            margin-top: 44px !important;
        }

        .proposal-form .checkbox-wrapper.--pet-dmg {
            position: relative !important;
            top: 20px !important;
        }

    .proposal-form .proposal-item {
        background: #f6f6f6;
    }

.proposal-left-bar {
    width: 40%;
    padding-bottom: 40px;
}

.proposal-item {
    display: flex;
    min-height: 100px;
    background: #fff;
    color: #000;
    margin-bottom: 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

    .proposal-item.no-offer .desc {
        width: 100% !important;
    }

    .proposal-item:last-child {
        margin-bottom: 0;
    }

    .proposal-item .quick-loader {
        transform-origin: 50% 50% 0;
        -webkit-animation: rotateY 1s infinite linear;
        animation: rotateY 1s infinite linear;
    }

    .proposal-item .desc {
        float: none !important;
        padding: 10px 20px;
        overflow: hidden;
    }

        .proposal-item .desc p {
            font-size: 12px;
            line-height: 20px;
            max-height: 120px;
            overflow: auto;
        }

            .proposal-item .desc p a {
                color: #eb1c74;
            }

                .proposal-item .desc p a:hover {
                    text-decoration: underline;
                }

        .proposal-item .desc h6 {
            font-size: 16px;
            font-weight: 500;
        }

    .proposal-item.fix-price {
        position: fixed;
        top: 94px;
        z-index: 99;
        width: 452px;
        background: #262847;
        color: #fff;
    }

    .proposal-item.wider .price-wrapper p {
        line-height: 30px;
    }

        .proposal-item.wider .price-wrapper p i {
            font-size: 50px;
        }

    .proposal-item.wider .old-price {
        display: block;
        font-size: 16px;
        text-decoration: line-through;
    }

    .proposal-item.wider .try {
        font-weight: 400;
    }

    .proposal-item.wider .desc {
        width: calc(100% - 240px);
    }

    .proposal-item.wider .btn-fill {
        margin-top: 15px;
        margin-bottom: 15px;
        height: 33px;
        line-height: 29px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
        background: #eb1c74;
        color: #fff;
        font-weight: 700;
        border: 2px solid #eb1c74;
        border-radius: 3px;
    }

        .proposal-item.wider .btn-fill:hover {
            background: #ef4b91;
            border-color: #ef4b91;
        }

        .proposal-item.wider .btn-fill.fit-content {
            width: fit-content;
        }

    .proposal-item.wider .url {
        color: #262847;
        font-size: 16px;
        font-weight: 500;
    }

        .proposal-item.wider .url:hover {
            color: #eb1c74;
        }

    .proposal-item .centered-content {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 5px;
    }

    .proposal-item .price-wrapper {
        flex: 0 0 140px;
        float: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #94d60a;
        text-align: center;
        color: #fff;
        font-size: 26px;
        line-height: 26px;
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
        padding: 20px 0;
    }

        .proposal-item .price-wrapper p .sub {
            font-size: 13px;
            font-family: "Raleway", sans-serif;
            font-weight: 600;
            color: #fff;
        }

    .proposal-item .actions {
        float: none !important;
    }

.cross-selling {
    background-color: #262847;
    color: #fff;
    padding: 20px;
}

    .cross-selling .cross-selling-header {
        margin-bottom: 20px;
    }

        .cross-selling .cross-selling-header h2 {
            font-weight: 500;
            color: #94d60a;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .cross-selling .cross-selling-header p {
            font-size: 14px;
        }

    .cross-selling .proposal-item.wider .desc {
        width: calc(100% - 290px);
    }

    .cross-selling .proposal-item.wider .btn-fill {
        background: #1f2346;
        border: 2px solid #1f2346;
    }

        .cross-selling .proposal-item.wider .btn-fill:hover {
            background: #2f3569;
            border-color: #2f3569;
        }

.user-info {
    position: relative;
    background-color: #e4e4e4;
    padding: 20px 20px 10px 20px;
    margin-bottom: 10px;
}

    .user-info.no-margin {
        padding: 20px 20px 0 20px;
        margin-bottom: 0;
    }

    .user-info > img {
        height: 50px;
        width: auto;
        position: absolute;
        bottom: 70px;
        right: 20px;
    }

    .user-info i {
        color: #94d60a;
        font-size: 64px;
    }

    .user-info h3 {
        color: #eb1c74;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .user-info .change-info {
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 13px;
        font-family: 600;
        color: #888888;
    }

    .user-info .username {
        font-size: 20px;
        color: #262847;
    }

    .user-info .tcno {
        font-family: "Open Sans", sans-serif;
        color: #444444;
        font-size: 18px;
    }

        .user-info .tcno span {
            font-weight: 700;
        }

    .user-info .vehicle-details {
        margin-bottom: 10px;
    }

    .user-info .licence-plate {
        margin-bottom: 20px;
        width: 136px;
        height: 30px;
        line-height: 30px;
        text-align: left !important;
        padding-left: 26px !important;
        background: url(/Content/images/plate.png) #fff bottom left no-repeat;
        background-size: 17px 30px;
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
        color: #6e6e6e;
    }

    .user-info .model {
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
        color: #888888;
    }

    .user-info .model-detail {
        position: relative;
        top: -3px;
        font-family: "Open Sans", sans-serif;
        color: #444444;
    }

    .user-info .user-further {
        font-size: 14px;
        line-height: 22px;
        color: #444444;
    }

        .user-info .user-further span {
            font-weight: 700;
        }

.relative-info {
    background-color: #e4e4e4;
    padding: 20px;
    margin-bottom: 20px;
    -webkit-border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -ms-border-radius: 6px 6px 6px 6px;
    -o-border-radius: 6px 6px 6px 6px;
    border-radius: 6px 6px 6px 6px;
}

    .relative-info a {
        color: #1f2346;
        font-weight: 600;
    }

.step-desc {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 10px;
}

    .step-desc h3 {
        color: #eb1c74;
        font-size: 21px;
        line-height: 21px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .step-desc p {
        margin-bottom: 5px;
        clear: both;
    }

        .step-desc p:last-child {
            margin-bottom: 0;
        }

    .step-desc img {
        height: 20px;
        margin-bottom: 20px;
        margin-right: 10px;
        float: left;
    }

    .step-desc a {
        cursor: pointer;
        color: #eb1c74;
        font-weight: 600;
    }

    .step-desc .with-icon {
        width: 100%;
        color: #7d7d7d;
        margin-top: 20px;
        display: flex;
        align-items: center;
    }

        .step-desc .with-icon i {
            font-size: 42px;
            display: block;
            float: left;
            width: 15%;
        }

        .step-desc .with-icon span {
            display: block;
            float: left;
            width: 85%;
            font-size: 14px;
            font-weight: 600;
        }

.step-description {
    margin-bottom: 20px;
}

    .step-description .step-description-title {
        color: #eb1c74;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .step-description a {
        color: #eb1c74;
    }

.insurance-info {
    position: relative;
    background-color: #e4e4e4;
    padding: 20px;
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
}

    .insurance-info .change-info {
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 13px;
        font-family: 600;
        color: #888888;
    }

    .insurance-info i {
        color: #94d60a;
        font-size: 64px;
    }

    .insurance-info h3 {
        color: #eb1c74;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .insurance-info p {
        color: #444;
        font-size: 14px;
    }

        .insurance-info p.username {
            font-size: 20px;
            color: #262847;
            margin-bottom: 0;
        }

        .insurance-info p.tcno {
            font-family: "Open Sans", sans-serif;
            color: #444444;
            font-size: 16px;
        }

            .insurance-info p.tcno span {
                font-weight: 700;
            }

    .insurance-info .insurance-detail p {
        font-size: 16px;
        margin-top: 10px;
    }

        .insurance-info .insurance-detail p span {
            font-weight: 700;
        }

    .insurance-info .insurance-detail .user-further.konut-user {
        font-size: 14px;
        line-height: 22px;
        color: #444444;
    }

        .insurance-info .insurance-detail .user-further.konut-user span {
            font-weight: 700;
        }

.step-campaign {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 10px;
}

    .step-campaign h3 {
        color: #eb1c74;
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .step-campaign p {
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 14px;
        clear: both;
    }

    .step-campaign img {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

.info-link {
    color: #1f2346;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

    .info-link:hover {
        color: #eb1c74;
    }

    .info-link i {
        margin-right: 5px;
    }

.border-bottom {
    border-bottom: 2px solid #cbcbcb;
    margin-bottom: 8px;
}

.ferdi-span-modifier {
    display: contents;
}

@media screen and (min-width: 992px) {
    .ferdi-span-modifier {
        display: block;
        text-indent: 30px;
    }
}

.outer-link {
    color: #1f2346;
}

    .outer-link:hover {
        color: #eb1c74;
    }

.card-wrapper img {
    height: 30px;
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
}

    .card-wrapper img:not(.card-brand) {
        display: none;
    }

.card-wrapper .card-bonus {
    right: 53px;
}

.form-row .card-wrapper label {
    padding-right: 106px;
}

.form-services {
    padding: 20px;
    background-color: #e4e4e4;
    color: #444444;
    margin-bottom: 10px;
}

    .form-services .service {
        color: #444444;
    }

    .form-services h5 {
        font-size: 15px;
        color: #eb1c74;
        font-weight: 500;
        margin-bottom: 18px;
    }

    .form-services h6 {
        font-size: 15px;
        color: #444444;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .form-services .service-title {
        font-size: 12px;
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
    }

    .form-services .service-address {
        font-size: 12px;
        font-family: "Open Sans", sans-serif;
    }

    .form-services .service-list {
        margin-bottom: 10px;
    }

    .form-services .dot {
        cursor: pointer;
        float: left;
        margin-right: 5px;
        width: 6px;
        height: 6px;
        border-radius: 6px;
        border: 1px solid #eb1c74;
    }

        .form-services .dot.active {
            background: #eb1c74;
        }

.havale-info,
.delegated-info,
.bank-info,
.credit-card-fields {
    display: none;
}

.credit-card-tckn-fields {
    display: none;
}

.havale-info .input-wrapper {
    margin: 25px 0;
}

.installment-plan {
    color: #eb1c74;
    display: flex;
    align-items: center;
    vertical-align: text-center;
    cursor: pointer;
}

    .installment-plan i {
        margin-right: 10px;
        font-size: 32px;
    }

    .installment-plan .text {
        display: block;
        text-decoration: underline;
        font-weight: 600;
    }

#contact-address-wrapper {
    display: none;
}

button.btn-query-same-person {
    width: 18%;
    float: right;
    position: relative;
    top: 10px;
}

@media screen and (max-width: 1170px) {
    .proposal-holder .proposal-item {
        height: auto !important;
    }

    .proposal-item.fix-price {
        position: static;
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    .proposal-holder .hint--bottom {
        display: none !important;
    }

    .proposal-holder .input-wrapper label {
        font-size: 12px !important;
    }

    .proposal-header {
        padding: 30px 0;
    }

        .proposal-header .inspect {
            width: 100%;
            margin: 0;
        }

            .proposal-header .inspect .icon-icon-product {
                display: none;
            }

        .proposal-header .proposal-steps {
            width: 100%;
            margin-top: 20px;
        }

    .proposal-form,
    .proposal-left-bar {
        width: 100%;
        padding-bottom: 40px;
    }

    .installment-plan {
        margin-top: 0;
    }

    .uavt-column {
        margin-top: 20px;
    }

    .step-campaign {
        background-color: #fff;
        padding: 20px;
        margin-bottom: 10px;
    }

        .step-campaign p {
            font-size: 16px;
            line-height: 16px;
            clear: both;
        }

        .step-campaign img {
            margin-bottom: 20px;
        }
}

@media screen and (max-width: 480px) {
    button.btn-query-same-person {
        width: 18%;
    }

    .proposal-holder .credit-card-fields .input-wrapper label.right {
        float: left;
        position: absolute;
        margin-top: 90px;
    }

    .proposal-form .checkbox-label {
        font-size: 11px;
    }

    .card-details .custom-select span {
        font-size: 14px;
        width: 30px;
        display: block;
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .cross-selling .proposal-item.wider .desc {
        width: 100%;
    }

    .cross-selling .proposal-item.wider .btn-fill {
        width: 80%;
    }

    .proposal-item {
        display: block;
    }

        .proposal-item .price-wrapper {
            padding: 10px 0;
            width: 100%;
            text-align: center;
        }

        .proposal-item.wider .desc {
            width: 100%;
            clear: both;
        }

            .proposal-item.wider .desc p {
                font-size: 12px;
                line-height: 20px;
            }

            .proposal-item.wider .desc h6 {
                font-size: 16px;
                font-weight: 500;
            }

        .proposal-item.wider .btn-fill {
            width: 50%;
            margin: 0 auto;
            text-align: center;
            clear: both;
        }

        .proposal-item.wider .url {
            padding: 10px 0;
            clear: both;
            display: block;
            text-align: center;
        }

    .proposal-header .proposal-steps .cell > img {
        top: -45px;
    }

    .proposal-header .step {
        width: 80px;
    }

        .proposal-header .step span {
            font-size: 12px;
        }

        .proposal-header .step i {
            width: 50px;
            height: 50px;
            line-height: 44px;
            font-size: 24px;
        }
}

@media screen and (max-width: 320px) {
    .proposal-header .step {
        width: 74px;
        margin-top: 20px;
    }
}

.proposal-item .desc-big h6 {
    margin-bottom: 5px;
}

.proposal-item .desc-big p {
    font-size: 16px;
}

.proposal-btn-fix {
    margin: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
    .proposal-btn-fix {
        margin: 34px 0 0 0;
    }
}

.proposal-form--transparent {
    background-color: transparent;
    padding: 0;
}

.proposal-price-item .proposal-price-top {
    padding: 20px;
}

.proposal-price-item .proposal-price-container {
    width: 100%;
    background-color: #94d60a;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .proposal-price-item .proposal-price-container .price {
        display: block;
        font-size: 28px;
        font-weight: 700;
    }

        .proposal-price-item .proposal-price-container .price .try {
            font-weight: 400;
        }

    .proposal-price-item .proposal-price-container .price--old {
        font-size: 18px;
        text-decoration: line-through;
    }

.proposal-price-item .proposal-price-description {
    padding: 10px 0 0 0;
}

.proposal-price-item .proposal-price-title {
    font-size: 18px;
}

.proposal-price-item .proposal-price-actions {
    padding: 0 20px 20px 20px;
}

    .proposal-price-item .proposal-price-actions .col-md-6:first-child {
        margin-bottom: 10px;
    }

@media screen and (min-width: 768px) {
    .proposal-price-item .proposal-price-top {
        display: flex;
    }

    .proposal-price-item .proposal-price-container {
        width: 160px;
    }

    .proposal-price-item .proposal-price-description {
        padding: 10px 20px 0 20px;
    }

    .proposal-price-item .proposal-price-actions .col-md-6:first-child {
        margin-bottom: 0;
    }
}

.area-label-modifier {
    min-height: 0 !important;
}

@media screen and (min-width: 1124px) {
    .area-label-modifier {
        min-height: 20px !important;
        position: relative;
        right: 370px;
        top: 44px;
        display: block;
    }

        .area-label-modifier.--evcil {
            right: 320px;
            top: 20px;
        }
}

.--zi-10 {
    z-index: 10;
}

.payment-divider {
    border-top: 1px solid #D1CFCF;
    margin-bottom: 40px;
}

.breadcrumbs {
    padding: 30px;
    background: #e4e4e4;
}

    .breadcrumbs a {
        color: #5e5e5e;
    }

        .breadcrumbs a.active {
            color: #eb1c74;
            font-weight: 700;
        }

        .breadcrumbs a:hover {
            color: #262847;
            cursor: pointer;
        }

    .breadcrumbs i {
        font-size: 10px;
        line-height: 14px;
        color: #bebebe;
        margin: 0 4px;
    }

.page-holder.campaigns-page {
    margin-top: 40px;
}

.page-holder .title {
    font-size: 24px;
    font-weight: 600;
    color: #262847;
    margin-bottom: 20px;
}

    .page-holder .title span {
        color: #eb1c74;
        font-weight: 700;
    }

.page-holder section {
    margin-bottom: 20px;
}

    .page-holder section.campaign.past-campaigns .campaing-card {
        opacity: 0.5;
    }

        .page-holder section.campaign.past-campaigns .campaing-card:hover {
            opacity: 1;
        }

    .page-holder section.campaign .campaing-card {
        margin-bottom: 20px;
    }

        .page-holder section.campaign .campaing-card div.campaign-cover {
            width: 100%;
        }

            .page-holder section.campaign .campaing-card div.campaign-cover img {
                width: 100%;
            }

        .page-holder section.campaign .campaing-card div.campaign-desc {
            width: 100%;
            margin-top: 20px;
        }

            .page-holder section.campaign .campaing-card div.campaign-desc h2 {
                color: #eb1c74;
                font-size: 18px;
                margin-bottom: 20px;
            }

            .page-holder section.campaign .campaing-card div.campaign-desc p {
                font-family: "Open Sans", sans-serif;
            }

            .page-holder section.campaign .campaing-card div.campaign-desc a.details {
                display: inline-block;
                margin-top: 20px;
                color: #262847;
                font-weight: 600;
            }

                .page-holder section.campaign .campaing-card div.campaign-desc a.details:hover {
                    color: #eb1c74;
                }

.campaign-detail-desc {
    font-family: "Open Sans", sans-serif;
    padding-top: 20px;
    padding-right: 35px;
}

    .campaign-detail-desc .campaign-detail-section {
        margin-bottom: 40px;
        width: 100%;
    }

    .campaign-detail-desc .button {
        margin-bottom: 20px;
    }

    .campaign-detail-desc h1 {
        line-height: 1.2;
        font-size: 32px;
        color: #eb1c74;
        margin-bottom: 20px;
    }

    .campaign-detail-desc p {
        margin-bottom: 20px;
    }

        .campaign-detail-desc p span {
            font-weight: 700;
        }

    .campaign-detail-desc h3 {
        font-size: 22px;
        color: #262847;
        font-weight: 600;
        margin-bottom: 20px;
    }

        .campaign-detail-desc h3 span {
            color: #eb1c74;
        }

    .campaign-detail-desc a.link {
        color: #eb1c74;
        font-weight: 500;
        cursor: pointer;
    }

    .campaign-detail-desc ul {
        list-style-type: none;
        margin-bottom: 30px;
        background-color: #fff;
        color: #3a3a3a;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
        border-radius: 6px;
        border: 1px solid #e4e4e4;
        font-size: 14px;
    }

        .campaign-detail-desc ul li {
            padding: 20px;
            background-color: #fff;
        }

            .campaign-detail-desc ul li:nth-child(odd) {
                background-color: #e4e4e4;
            }

            .campaign-detail-desc ul li:first-child {
                -webkit-border-radius: 6px 6px 0 0;
                -moz-border-radius: 6px 6px 0 0;
                -ms-border-radius: 6px 6px 0 0;
                -o-border-radius: 6px 6px 0 0;
                border-radius: 6px 6px 0 0;
            }

            .campaign-detail-desc ul li:last-child {
                -webkit-border-radius: 0 0 6px 6px;
                -moz-border-radius: 0 0 6px 6px;
                -ms-border-radius: 0 0 6px 6px;
                -o-border-radius: 0 0 6px 6px;
                border-radius: 0 0 6px 6px;
            }

    .campaign-detail-desc .campaign-features i {
        font-size: 42px;
        color: #262847;
        width: 100%;
    }

    .campaign-detail-desc .campaign-features h4 {
        font-weight: 600;
    }

    .campaign-detail-desc .campaign-features p {
        font-size: 14px;
    }

.campaign-share {
    padding: 0 0 0 20px;
}

.no-campaign-card {
    background: #fff;
    padding: 15px;
}

    .no-campaign-card p {
        color: #4e4e4e;
        font-size: 18px;
    }

.no-campaign-social {
    margin-top: 20px;
}

    .no-campaign-social li {
        display: inline-block;
        margin-right: 10px;
    }

        .no-campaign-social li a {
            color: #262847;
        }

            .no-campaign-social li a i {
                font-size: 32px;
            }

            .no-campaign-social li a:hover {
                color: #eb1c74;
            }

        .no-campaign-social li:last-child {
            margin: 0;
        }

.campaign-image-container {
    height: 100%;
}

    .campaign-image-container img {
        display: block;
        max-width: 100%;
    }

.eq-columns {
    display: table;
    border-collapse: collapse;
    width: 100%;
}

.eq-column {
    display: table-cell;
    float: none;
    vertical-align: top;
}

@media screen and (max-width: 992px) {
    .campaign-share {
        padding: 0;
    }

    .campaign-detail-content {
        padding: 0 30px;
    }

    .eq-columns {
        display: block;
    }

    .eq-column {
        display: block;
        width: 100%;
        vertical-align: top;
    }

    .page-holder .campaign-detail {
        width: 100%;
    }

    .page-holder .campaign-detail-desc {
        padding-right: 15px;
    }
}

.map-listing-container {
    position: relative;
    height: 100%;
    zoom: 1;
    background: #fff;
}

    .map-listing-container:before, .map-listing-container:after {
        content: "\0020";
        display: block;
        height: 0;
        overflow: hidden;
    }

    .map-listing-container:after {
        clear: both;
    }

.map-listing-sidebar {
    background: #fbfbfb;
    position: relative;
    z-index: 10;
}

.map-listing-sidebar-top {
    padding: 30px 30px 0 30px;
    position: relative;
}

    .map-listing-sidebar-top .title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .map-listing-sidebar-top .map-listing-toggle {
        position: absolute;
        top: 30px;
        right: 30px;
        /*border: 1px solid $form-border-color;*/
        height: 36px;
        width: 36px;
        background-color: #eb1c74;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        text-align: center;
    }

        .map-listing-sidebar-top .map-listing-toggle i {
            line-height: 34px;
            font-size: 20px;
            color: #fff;
        }

.map-listing-sidebar-form {
    padding: 0 30px;
}

.map-listing-sidebar-content {
    padding: 0 30px 30px 30px;
}

    .map-listing-sidebar-content .loader {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

        .map-listing-sidebar-content .loader i {
            color: #dadada;
            font-size: 36px;
            transform-origin: 50% 50% 0;
            -webkit-animation: rotateY 1s infinite linear;
            animation: rotateY 1s infinite linear;
        }

.map-listing-map-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.map-listing-map {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Google Maps Related Classes */
.gm-style-iw + div {
    display: block;
    content: "+";
    line-height: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
    border-radius: 13px;
    background-color: #e83636;
    position: relative;
    opacity: 1 !important;
    text-align: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
}

    .gm-style-iw + div:hover {
        background-color: #333;
    }

    .gm-style-iw + div:after {
        display: block;
        font-size: 16px;
        content: "+";
        font-weight: bold;
        color: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .gm-style-iw + div img {
        display: none;
    }

/* Cluster styles */
.cluster img {
    display: none;
}

.cluster-visible {
    text-align: center;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    background-color: #eb1c74;
}

    .cluster-visible:before {
        border: 6px solid #eb1c74;
        opacity: 0.2;
        box-shadow: inset 0 0 0 4px #eb1c74;
        content: "";
        position: absolute;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        animation: cluster-animation 2.5s infinite;
    }

@keyframes cluster-animation {
    0%, 100% {
        transform: scale(1.3) rotate(0deg);
    }

    50% {
        transform: scale(1.5) rotate(90deg);
    }
}

.info-box-content {
    position: relative;
    background: white;
    border-radius: 3px;
    background-color: #fff;
    border-radius: 3px;
    padding: 12px;
}

.info-box-arrow {
    display: none;
    position: relative;
    top: 100%;
    left: 50%;
    border: solid transparent;
    height: 10px;
    width: 20px;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}

.ib b {
    margin-right: 5px;
    color: #eb1c74;
}

.ib-title {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.ib-address {
    text-transform: uppercase;
    font-size: 14px;
    color: #444;
}

.ib-contact {
    font-size: 14px;
    color: #444;
    margin-top: 4px;
}

.info-box-content .ib-profile {
    margin: 0.5rem 0;
    display: block;
}

.ib-buttons a {
    font-size: 16px;
    margin: 0 5px;
    border-radius: 4px;
    padding: 6px 12px;
}

    .ib-buttons a:first-child {
        margin-left: 0;
    }

    .ib-buttons a:last-child {
        margin-right: 0;
    }

.ib-call {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    display: flex;
    margin-top: 10px;
    background-color: #1f2346;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .ib-call .ib-call-text {
        margin-right: 10px;
    }

        .ib-call .ib-call-text b {
            color: #fff;
            display: block;
        }

        .ib-call .ib-call-text span {
            color: #fff;
        }

    .ib-call .ib-call-btn {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        background-color: #fff;
        color: #1f2346;
        padding: 0 12px;
        font-weight: 700;
        margin-left: auto;
        display: flex;
        align-items: center;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .ib-call:hover .ib-call-btn {
        background-color: #94d60a;
        color: #fff;
    }

/* Listings */
.map-listing-item {
    position: relative;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px 0 rgba(17, 17, 17, 0.06);
    overflow: hidden;
}

    .map-listing-item:last-child {
        margin-bottom: 0;
    }

.map-listing-item-content {
    padding: 20px;
}

    .map-listing-item-content .listing-item-title {
        display: block;
        line-height: 1.2;
        font-weight: 700;
        color: #121212;
        padding-right: 20px;
        text-transform: uppercase;
    }

        .map-listing-item-content .listing-item-title:hover {
            color: #eb1c74;
        }

    .map-listing-item-content .listing-item-information {
        font-size: 14px;
        margin-top: 10px;
    }

        .map-listing-item-content .listing-item-information .listing-item-information-item {
            display: flex;
            color: #3a3a3a;
        }

            .map-listing-item-content .listing-item-information .listing-item-information-item b {
                color: #eb1c74;
                margin-right: 10px;
            }

            .map-listing-item-content .listing-item-information .listing-item-information-item a {
                color: #3a3a3a;
            }

                .map-listing-item-content .listing-item-information .listing-item-information-item a:hover {
                    color: #eb1c74;
                }

        .map-listing-item-content .listing-item-information .ib-profile {
            margin-top: 10px;
        }

        .map-listing-item-content .listing-item-information .listing-item-address {
            text-transform: uppercase;
        }

.listing-item-profile {
    margin-top: 10px;
}

.listing-item-location {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 20px;
    color: #94d60a;
    text-align: center;
}

    .listing-item-location:hover {
        color: #eb1c74;
    }

@media screen and (min-width: 768px) {
    .map-listing-container {
        display: flex;
        flex-direction: row-reverse;
    }

    .map-listing-sidebar {
        width: 420px;
        height: 100%;
        -webkit-box-shadow: 4px 0px 8px -3px rgba(17, 17, 17, 0.06);
        -moz-box-shadow: 4px 0px 8px -3px rgba(17, 17, 17, 0.06);
        box-shadow: 4px 0px 8px -3px rgba(17, 17, 17, 0.06);
        position: relative;
        z-index: 10;
    }

        .map-listing-sidebar .title {
            font-size: 32px;
        }

    .map-listing-sidebar-content {
        padding: 0 11px 30px 30px;
        height: calc(100% - 268px);
    }

    .map-listing-sidebar-content-inner {
        padding-right: 11px;
        height: 100%;
        overflow-y: auto;
    }

    .map-listing-map-container {
        position: relative;
        z-index: 5;
        float: left;
        width: calc(100% - 420px);
        height: 100%;
        padding: 0;
    }
}

.desc-inner table {
    border-bottom: none !important;
}

thead,
tbody {
    border: none;
}

    thead.non-fancy-table-header.fix-table-header {
        position: fixed;
        top: 82px;
        z-index: 999;
        width: 920px;
    }

        thead.non-fancy-table-header.fix-table-header th:first-child {
            width: 332px;
        }

        thead.non-fancy-table-header.fix-table-header .hidden {
            display: block !important;
        }

.products {
    margin: 50px auto 50px auto;
    width: 80%;
    border: none;
}

    .products tr:first-child td:first-child {
        border-top: none;
    }

    .products tbody {
        border-top: 1px Solid #000;
        margin-top: 20px;
    }

    .products th {
        border: none;
        background: #fff;
        height: 80px;
        text-align: left;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: 400;
    }

        .products th:first-child {
            color: #eb1c74;
            text-align: left;
            font-size: 20px;
        }

        .products th .fancy-title {
            text-align: left;
            padding: 0 20px;
            color: #262847;
            font-size: 16px;
            font-weight: 500;
        }

        .products th:not(:last-child) {
            border-right: 1px solid #262847;
        }

    .products .fancy-table-header th {
        text-align: left;
    }

        .products .fancy-table-header th span {
            display: block;
            padding: 0 20px;
        }

            .products .fancy-table-header th span:not(:last-child) {
                margin-bottom: 15px;
            }

        .products .fancy-table-header th .fancy-desc {
            color: #262847;
            font-size: 14px;
        }

        .products .fancy-table-header th .fancy-subtitle {
            color: #eb1c74;
            font-size: 14px;
            font-weight: 500;
        }

    .products td {
        padding: 5px 15px;
        text-align: left;
        background: #fff;
        border: none;
    }

        .products td table {
            width: 100%;
        }

        .products td.column-1 {
            font-family: "Raleway", sans-serif;
            font-weight: 400;
            font-size: 15px;
            background: #fff !important;
            text-align: left;
            border-left: none;
            border-right: none;
            border-top: none;
            border-bottom: none;
            position: relative;
            color: #444;
        }

            .products td.column-1 i {
                font-size: 22px;
                color: #e4e4e4;
                position: absolute;
                right: 30px;
            }

            .products td.column-1:not(:last-child), .products td.column-2:not(:last-child) {
                border-right: 1px solid #262847;
            }

        .products td.column-2, .products td.column-3 {
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            font-size: 15px;
            color: #94d60a;
            padding: 15px 35px;
        }

            .products td.column-2 i, .products td.column-3 i {
                position: relative;
                top: 6px;
                height: 17px;
            }

            .products td.column-2 .font-yes, .products td.column-3 .font-yes {
                width: 17.5px;
                height: 17px;
                background: url(/Content/images/yes.png) no-repeat;
                -webkit-background-size: cover;
                -moz-background-size: cover;
                -o-background-size: cover;
                background-size: cover;
                display: inline-block;
            }

            .products td.column-2 .font-no, .products td.column-3 .font-no {
                width: 17.5px;
                height: 17px;
                background: url(/Content/images/no.png) no-repeat;
                -webkit-background-size: cover;
                -moz-background-size: cover;
                -o-background-size: cover;
                background-size: cover;
                display: inline-block;
            }

            .products td.column-2 .icon-icon-no, .products td.column-3 .icon-icon-no {
                color: #cecece;
                font-size: 22px;
            }

        .products td:first-child.desc {
            font-size: 14px;
            line-height: 1.5;
            font-family: "Open Sans", sans-serif;
            text-align: left;
            background: #f2f2f2;
            padding-bottom: 30px;
            color: #7e7e7e;
        }

        .products td:first-child.desc-inner {
            padding: 0;
        }

    .products .trigger-1st.active td.column-1,
    .products .trigger-1st.active td.column-2 {
        border-right: none;
    }

    .products tr {
        cursor: pointer;
        border: none;
    }

        .products tr:hover td,
        .products tr.active td {
            background: #f2f2f2 !important;
        }

            .products tr:hover td:first-child,
            .products tr.active td:first-child {
                color: #eb1c74;
            }

            .products tr:hover td.desc,
            .products tr.active td.desc {
                color: #222222;
            }

    .products .desc-inner tr td {
        background: #f2f2f2 !important;
    }

        .products .desc-inner tr td:first-child {
            color: #222222;
        }

        .products .desc-inner tr td.desc {
            color: #7e7e7e !important;
        }

    .products .desc-inner tr:hover td:first-child,
    .products .desc-inner tr.active td:first-child {
        color: #eb1c74 !important;
    }

    .products .desc-inner tr:hover td.desc,
    .products .desc-inner tr.active td.desc {
        color: #222222 !important;
    }

    .products tr:nth-child(2n) {
        cursor: default;
    }

    .products tr.last-child td {
        border-bottom: none;
    }

.pink-block,
.green-block,
.white-block {
    padding: 40px;
    background: #eb1c74;
    color: #fff;
    text-align: center;
}

    .pink-block > i,
    .green-block > i,
    .white-block > i {
        display: block;
        font-size: 72px;
        margin-bottom: 30px;
    }

    .pink-block p,
    .green-block p,
    .white-block p {
        margin-bottom: 30px;
        font-size: 22px;
    }

    .pink-block .button-fill,
    .green-block .button-fill,
    .white-block .button-fill {
        font-weight: normal;
        border: 2px solid #fff;
        letter-spacing: 1px;
    }

.white-block {
    background: #fff;
    color: #262626;
}

    .white-block .button-fill {
        border: 2px solid #eb1c74;
    }

    .white-block p {
        color: #eb1c74;
    }

    .white-block .product-note {
        font-size: 14px;
        color: #4e4e4e;
    }

.green-block {
    background: #83be09;
}

    .green-block .button-fill {
        background: #83be09;
    }

        .green-block .button-fill:hover {
            background: #a5ee0b;
        }

.divided-block {
    position: relative;
    background: #fff;
}

    .divided-block:before {
        content: "";
        display: block;
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #ededed;
        z-index: 1;
    }

    .divided-block .column {
        float: left;
        width: 50%;
        position: relative;
        z-index: 2;
        padding: 80px 0;
    }

        .divided-block .column .car-insurance-feature-icon {
            padding: 0 20px;
        }

            .divided-block .column .car-insurance-feature-icon img {
                width: 60px;
                margin-bottom: 20px;
            }

            .divided-block .column .car-insurance-feature-icon p {
                color: #848484;
                text-align: center;
            }

        .divided-block .column h2 {
            font-size: 42px;
            color: #eb1c74;
            text-align: left;
        }

        .divided-block .column h3 {
            font-size: 24px;
            font-weight: 400;
            color: #848484;
            text-align: left;
        }

        .divided-block .column.bg-grey {
            background: #ededed;
        }

            .divided-block .column.bg-grey h2,
            .divided-block .column.bg-grey h3 {
                text-align: right;
            }

        .divided-block .column .button-stroke {
            margin-top: 30px;
        }

.feature-block {
    position: relative;
    background: #fff;
    height: auto;
}

    .feature-block.bg-grey {
        background: #fafafa;
    }

    .feature-block .column {
        position: relative;
        padding: 80px 0;
        text-align: center;
    }

        .feature-block .column .feature-holder {
            margin: 50px auto 0 auto;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

            .feature-block .column .feature-holder .car-insurance-feature-icon {
                width: 20%;
                text-align: center;
                margin-bottom: 40px;
            }

                .feature-block .column .feature-holder .car-insurance-feature-icon i {
                    font-size: 60px;
                    color: #94d60a;
                }

                .feature-block .column .feature-holder .car-insurance-feature-icon p {
                    color: #848484;
                    text-align: center;
                }

        .feature-block .column h2 {
            font-size: 42px;
            color: #eb1c74;
        }

        .feature-block .column h3 {
            font-size: 24px;
            font-weight: 400;
            color: #848484;
        }

.product-feature-detail {
    background-color: #e4e4e4;
    color: #484848;
    display: none;
    text-align: left;
}

    .product-feature-detail i.btn-close {
        font-size: 24px;
        position: relative;
        top: 30px;
        display: block;
        color: #888;
        text-align: center;
        cursor: pointer;
    }

    .product-feature-detail .holder {
        padding-top: 50px;
        padding-bottom: 50px;
    }

        .product-feature-detail .holder .produc-desc-title {
            margin-bottom: 50px;
            border-bottom: 4px solid #e8e8e8;
            padding-bottom: 30px;
        }

            .product-feature-detail .holder .produc-desc-title h2 {
                color: #eb1c74;
                padding: 10px;
                font-size: 32px;
                font-weight: 400;
                text-align: center;
            }

            .product-feature-detail .holder .produc-desc-title .product-desc {
                font-size: 18px;
                text-align: center;
            }

        .product-feature-detail .holder .font-yes {
            width: 17.5px;
            height: 17px;
            background: url(/Content/images/yes.png) no-repeat;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
            display: inline-block;
            margin-right: 20px;
        }

        .product-feature-detail .holder .assurance-list {
            margin-bottom: 30px;
            padding-right: 20px;
        }

        .product-feature-detail .holder p {
            margin-bottom: 10px;
            font-size: 22px;
            font-weight: 400;
        }

            .product-feature-detail .holder p span {
                color: #888;
                font-style: italic;
                font-size: 16px;
                font-family: "Open Sans", sans-serif;
            }

            .product-feature-detail .holder p.assurance-header {
                font-weight: 600;
                padding-right: 20px;
            }

        .product-feature-detail .holder ul {
            margin-bottom: 30px;
            list-style-type: circle;
            margin-left: 45px;
            padding-right: 20px;
        }

            .product-feature-detail .holder ul li {
                font-size: 16px;
                line-height: 24px;
                padding: 5px;
            }

                .product-feature-detail .holder ul li:hover {
                    background: #fafafa;
                }

                .product-feature-detail .holder ul li span {
                    float: right;
                    color: #888;
                    padding-right: 35px;
                }

        .product-feature-detail .holder .table .assurance-box .holder {
            background-color: #fff;
            padding: 20px;
            margin-bottom: 20px;
        }

            .product-feature-detail .holder .table .assurance-box .holder h3 {
                font-size: 20px;
                font-weight: 500;
                padding-bottom: 5px;
                margin-bottom: 20px;
                border-bottom: 1px solid #e4e4e4;
                color: #eb1c74;
            }

            .product-feature-detail .holder .table .assurance-box .holder p {
                font-size: 16px;
                margin-bottom: 0;
                padding: 10px;
            }

                .product-feature-detail .holder .table .assurance-box .holder p:hover {
                    background: #94d60a;
                    color: #fff;
                }

                    .product-feature-detail .holder .table .assurance-box .holder p:hover span {
                        color: #fff;
                    }

                .product-feature-detail .holder .table .assurance-box .holder p span {
                    float: right;
                    font-style: normal;
                }

.btn-toggle {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.btn-hide {
    opacity: 0;
    pointer-events: none;
}

.doc-link {
    font-size: 16px;
    color: #262626;
    opacity: 0.8;
    font-weight: 400;
    display: block;
    padding: 5px 0;
}

    .doc-link:hover {
        opacity: 1;
        text-decoration: underline;
    }

.accoreon-wrapper {
    background: #f2f2f2;
    padding-bottom: 70px;
}

    .accoreon-wrapper h1 {
        font-size: 38px;
        font-weight: 600;
        color: #eb1c74;
        margin-bottom: 30px;
        text-align: center;
    }

    .accoreon-wrapper p {
        margin-bottom: 25px;
    }

        .accoreon-wrapper p:last-of-type {
            margin-bottom: 20px;
        }

        .accoreon-wrapper p a {
            color: #262847;
            font-weight: 600;
            text-decoration: underline;
        }

            .accoreon-wrapper p a:hover {
                color: #eb1c74;
            }

.table-wrapper {
    padding-bottom: 20px;
}

    .table-wrapper .holder {
        overflow-x: auto;
    }

    .table-wrapper h1 {
        font-size: 38px;
        font-weight: 600;
        color: #eb1c74;
        margin-bottom: 30px;
        margin-top: 30px;
        text-align: center;
    }

@media screen and (max-width: 1024px) {
    .grid-3-2,
    .grid-3 {
        width: 100%;
    }

    .product-feature-detail {
        padding: 0 30px;
    }

    .holder ul li span {
        float: initial !important;
    }
}

.hero.hero-single {
    padding-right: 0;
}

    .hero.hero-single #plate-empty .select2-container--default .select2-selection--single,
    .hero.hero-single #plate-empty .select2-container--default.select2-container--open
    .select2-selection--single,
    .hero.hero-single #plate-empty .select2-container--default.select2-container--open
    .select2-selection--single:hover,
    .hero.hero-single #plate-empty .select2-container--default .select2-selection--single:hover,
    .hero.hero-single #plate-empty-2 .select2-container--default .select2-selection--single,
    .hero.hero-single #plate-empty-2 .select2-container--default.select2-container--open
    .select2-selection--single,
    .hero.hero-single #plate-empty-2 .select2-container--default.select2-container--open
    .select2-selection--single:hover,
    .hero.hero-single #plate-empty-2 .select2-container--default .select2-selection--single:hover {
        border: none;
        height: 40px;
        padding-top: 5px;
        border-radius: 3px;
    }

    .hero.hero-single #plate-empty span,
    .hero.hero-single #plate-empty-2 span {
        color: #ababab;
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        text-transform: capitalize;
    }

    .hero.hero-single h3.cross-sale-header {
        background-color: #262847;
        color: #fff;
        padding: 20px 0;
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .hero.hero-single .cross-sell-desc {
        color: #000;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 10px;
        text-align: left;
    }

    .hero.hero-single table.cross-sale {
        color: #262847;
        margin: 0 auto;
        font-family: "Open Sans", sans-serif;
    }

        .hero.hero-single table.cross-sale thead tr th {
            text-align: left;
            padding: 8px;
        }

        .hero.hero-single table.cross-sale tbody tr td {
            text-align: left;
            padding: 8px;
        }

            .hero.hero-single table.cross-sale tbody tr td a.show-offer {
                color: #262847;
                font-weight: 600;
            }

                .hero.hero-single table.cross-sale tbody tr td a.show-offer:hover {
                    color: #eb1c74;
                }

            .hero.hero-single table.cross-sale tbody tr td .button-stroke {
                color: #94d60a;
                border-color: #94d60a;
            }

            .hero.hero-single table.cross-sale tbody tr td.price {
                color: #eb1c74;
                font-weight: 600;
                font-size: 18px;
            }

    .hero.hero-single h1 {
        color: #262847;
    }

        .hero.hero-single h1 i {
            color: #94d60a;
            position: relative;
            top: 12px;
            font-size: 36px;
            display: inline-block;
            border: 3px solid #94d60a;
            border-radius: 50%;
            width: 60px;
            line-height: 54px;
            margin-bottom: 40px;
        }

    .hero.hero-single p {
        color: #eb1c74;
    }

        .hero.hero-single p.blue {
            color: #262847 !important;
            margin-bottom: 20px;
        }

            .hero.hero-single p.blue.hat {
                font-weight: 600;
            }

                .hero.hero-single p.blue.hat strong {
                    font-family: "Open Sans", sans-serif;
                    font-weight: 700;
                    color: #eb1c74;
                }

        .hero.hero-single p span {
            font-size: 16px;
            line-height: 16px;
            color: #000;
            text-align: left !important;
        }

    .hero.hero-single input,
    .hero.hero-single .licence-plate {
        border: 2px solid #bebebe !important;
    }

    .hero.hero-single .licence-checkbox label {
        color: #444;
    }

    .hero.hero-single #formKonut .info-link {
        color: #444;
        margin-top: 0;
    }

        .hero.hero-single #formKonut .info-link:hover {
            color: #94d60a;
        }

    .hero.hero-single .eula {
        color: #444;
    }

        .hero.hero-single .eula a {
            color: #444;
        }

            .hero.hero-single .eula a:hover {
                text-decoration: underline;
                color: #eb1c74;
            }

    .hero.hero-single .button-fill.button-stroke {
        background: transparent;
        color: #262847;
        margin-bottom: 80px;
    }

        .hero.hero-single .button-fill.button-stroke.button-stroke, .hero.hero-single .button-fill.button-stroke.button-fill-darkblue {
            margin-bottom: 40px;
        }

    .hero.hero-single .button-fill-pink {
        color: #eb1c74;
        border: 2px solid #eb1c74;
        background: transparent;
    }

    .hero.hero-single .icon-icon-kasko-2 {
        display: block;
        text-align: center;
        font-size: 96px;
        color: #94d60a;
    }

    .hero.hero-single .icon-icon-trafik-2 {
        display: block;
        text-align: center;
        font-size: 80px;
        height: 96px;
        color: #94d60a;
    }

    .hero.hero-single .icon-icon-dask,
    .hero.hero-single .icon-icon-konut,
    .hero.hero-single .icon-icon-ferdi-kaza,
    .hero.hero-single .icon-icon-seyahat,
    .hero.hero-single .icon-icon-doctor {
        display: block;
        text-align: center;
        font-size: 96px;
        color: #94d60a;
    }

.hero.hero-single-no-bg {
    background: none;
}

.hero.hero-single-bg h1 {
    color: #fff;
}

.hero.hero-single-bg p {
    color: #fff;
    margin-bottom: 40px;
}

.hero.hero-single-bg .small {
    max-width: 800px;
    text-align: center;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
}

.hero.hero-single-bg .button-fill {
    color: #fff;
    background: #eb1c74;
}

    .hero.hero-single-bg .button-fill:hover {
        background: #c3115d;
    }

.hero.hero-single-bg .icon-big {
    color: #5d6369;
    font-size: 50px;
    height: 50px;
    margin-top: 40px;
}

.success .payment-success-left {
    text-align: left;
}

    .success .payment-success-left h1 {
        color: #262847;
        margin-bottom: 0;
        line-height: 20px;
    }

        .success .payment-success-left h1 span {
            font-size: 24px;
            font-weight: 400;
        }

    .success .payment-success-left p {
        font-size: 18px;
    }

.success .proposal-item {
    margin-bottom: 10px;
}

    .success .proposal-item .cross-sale-btn-group {
        padding: 20px 10px;
    }

        .success .proposal-item .cross-sale-btn-group .url {
            color: #262847;
            font-size: 16px;
            font-weight: 500;
        }

            .success .proposal-item .cross-sale-btn-group .url:hover {
                color: #1f2346;
                cursor: pointer;
            }

        .success .proposal-item .cross-sale-btn-group .btn-fill {
            height: 33px;
            line-height: 25px;
            padding-left: 10px;
            padding-right: 10px;
            font-size: 14px;
            background: #eb1c74;
            color: #fff;
            font-weight: 700;
            border: 4px solid #eb1c74;
            border-radius: 3px;
        }

            .success .proposal-item .cross-sale-btn-group .btn-fill:hover {
                background: #c3115d;
                border-color: #c3115d;
                cursor: pointer;
            }

    .success .proposal-item .desc {
        text-align: left;
    }

        .success .proposal-item .desc h4 {
            color: #262847;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .success .proposal-item .desc p {
            color: #262847;
            font-size: 14px;
        }

            .success .proposal-item .desc p span {
                font-size: 18px;
                color: #eb1c74 !important;
                display: block;
                margin-bottom: 10px;
            }

    .success .proposal-item .price-wrapper {
        background: #dedede;
        display: block;
        padding: 0;
    }

        .success .proposal-item .price-wrapper .price-show {
            padding: 20px 0;
            background-color: #94d60a;
        }

            .success .proposal-item .price-wrapper .price-show p {
                color: #fff !important;
                font-size: 28px;
            }

                .success .proposal-item .price-wrapper .price-show p .old-price {
                    font-size: 16px;
                    text-decoration: line-through;
                }

    .success .proposal-item .price-wrapper-2 {
        flex: 0 0 140px;
        float: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #94d60a;
        text-align: center;
        color: #fff;
        font-size: 26px;
        line-height: 26px;
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
        padding: 20px 0;
    }

        .success .proposal-item .price-wrapper-2 .price-show {
            padding: 20px 0;
            background-color: #94d60a;
        }

            .success .proposal-item .price-wrapper-2 .price-show p {
                color: #fff !important;
                font-size: 28px;
            }

                .success .proposal-item .price-wrapper-2 .price-show p .old-price {
                    font-size: 16px;
                    text-decoration: line-through;
                }

    .success .proposal-item .tktss-header {
        padding-bottom: 1rem;
    }

        .success .proposal-item .tktss-header .title {
            font-weight: 700;
            font-size: 24px;
            line-height: 32px;
            text-align: center;
            color: #0d3057;
        }

        .success .proposal-item .tktss-header img {
            max-width: 100%;
            margin-bottom: 1rem;
        }

    .success .proposal-item .price-wrapper-3 {
        padding: 1rem;
        border-bottom: 1px solid #e2e2e3;
        border-top: 1px solid #e2e2e3;
        text-align: center;
    }

        .success .proposal-item .price-wrapper-3 .price-show {
            font-weight: 700;
            font-size: 2.25rem;
            line-height: 42px;
            text-align: center;
            color: #0d3057;
        }

        .success .proposal-item .price-wrapper-3 a {
            padding: 0.75rem 1rem;
            margin-top: 0.75rem;
        }

.header-message {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

    .header-message .header-message-icon {
        width: 96px;
    }

        .header-message .header-message-icon i {
            display: center;
            text-align: center;
            font-size: 28px;
            color: #94d60a;
            width: 64px;
            height: 64px;
            border: 4px solid #94d60a;
            line-height: 60px;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
        }

    .header-message .header-error-icon {
        width: 96px;
    }

        .header-message .header-error-icon i {
            display: block;
            text-align: center;
            font-size: 24px;
            color: #F43B5C;
            width: 64px;
            height: 64px;
            border: 4px solid #F43B5C;
            line-height: 60px;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
        }

    .header-message .header-message-text p.blue:last-child {
        margin-bottom: 0;
    }

@media (max-width: 860px) {
    .header-message {
        justify-content: center;
        /* Align items to the start (top) */
    }
}

.m-t-05 {
    margin-top: 0.5rem !important;
}

@media screen and (max-width: 1170px) {
    .payment-success-left {
        padding-right: 20px;
        width: 60%;
    }

        .payment-success-left h1 {
            line-height: 60px;
            font-size: 32px;
        }

            .payment-success-left h1 span {
                font-size: 18px !important;
            }

    .cross-sale {
        width: 40%;
    }
}

@media screen and (max-width: 860px) {
    .success .payment-success-left {
        text-align: center;
        width: 100%;
        padding: 0;
    }

        .success .payment-success-left h1 {
            line-height: 24px;
        }

            .success .payment-success-left h1 span {
                font-size: 18px !important;
            }

    .success .cross-sale {
        width: 100%;
    }

    .success .header-message-icon i {
        margin: 0 auto;
    }

    .v-align {
        display: block;
    }

        .v-align .v-align-middle {
            display: block;
            width: auto;
        }
}

.modular {
    padding-top: 50px;
    padding-bottom: 50px;
}

.modular-header {
    margin-bottom: 50px;
}

    .modular-header.renew-password {
        text-align: center;
    }

    .modular-header .heading {
        width: 100%;
    }

        .modular-header .heading p {
            font-size: 36px;
            font-weight: 700;
            color: #262847;
        }

.modular-content {
    width: 65%;
    background: #fff;
    margin-bottom: 20px;
}

    .modular-content.renew-password {
        margin: 0 auto;
    }

    .modular-content .transaction-notification {
        padding: 15px 40px;
        text-align: left;
        background: #94d60a;
        color: #fff;
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
    }

        .modular-content .transaction-notification a {
            color: #fff;
        }

            .modular-content .transaction-notification a:hover {
                color: #f0f0f0;
            }

    .modular-content .profile {
        background-image: url(/Content/images/online-transactions/bg.png);
        padding: 40px;
        text-align: center;
        position: relative;
    }

        .modular-content .profile .remove-photo {
            display: block;
            border-radius: 50%;
            border: 2px #fff solid;
            background: #333;
            width: 20px;
            height: 20px;
            font-size: 10px;
            margin: 0 auto;
            position: relative;
            top: 24px;
            left: 36px;
            z-index: 4;
            text-align: center;
        }

            .modular-content .profile .remove-photo:hover {
                background: #f0f0f0;
                border-color: #333;
                color: #333;
            }

        .modular-content .profile .name,
        .modular-content .profile .upload-photo {
            display: block;
            color: #fff;
        }

        .modular-content .profile .name {
            font-size: 24px;
        }

        .modular-content .profile a {
            padding: 0;
            color: #f2dae6;
            font-size: 12px;
        }

            .modular-content .profile a:hover {
                color: #262847;
            }

        .modular-content .profile .logout {
            cursor: pointer;
            position: absolute;
            top: 7px;
            right: 15px;
        }

            .modular-content .profile .logout a {
                font-size: 16px;
                color: #fff;
            }

                .modular-content .profile .logout a:hover {
                    color: #262847;
                }

                .modular-content .profile .logout a i {
                    font-size: 24px;
                    position: relative;
                    top: 5px;
                    right: 5px;
                }

        .modular-content .profile .trigger-upload {
            display: none;
        }

        .modular-content .profile .avatar {
            display: inline-block;
            width: 100px;
            height: 100px;
            position: relative;
            overflow: hidden;
            border-radius: 50%;
            border: 5px #fff solid;
            z-index: 3;
            position: relative;
        }

            .modular-content .profile .avatar img {
                display: inline;
                margin: 0 auto;
                height: 100%;
                width: auto;
            }

    .modular-content .table-holder.transaction-holder {
        padding: 40px;
    }

    .modular-content .map-wrapper {
        width: 100%;
        height: 200px;
    }

    .modular-content .transaction-holder {
        padding: 20px;
    }

        .modular-content .transaction-holder .table-holder table .button-stroke {
            min-width: 90px;
            text-align: center;
        }

        .modular-content .transaction-holder .document-link {
            color: #262847;
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
        }

            .modular-content .transaction-holder .document-link:hover {
                color: #eb1c74;
                text-decoration: underline;
            }

            .modular-content .transaction-holder .document-link i {
                font-size: 10px;
            }

        .modular-content .transaction-holder .help-desc {
            margin-bottom: 20px;
        }

        .modular-content .transaction-holder .contact-details h4 {
            margin-bottom: 20px !important;
        }

        .modular-content .transaction-holder .contact-details p {
            margin-bottom: 40px !important;
        }

            .modular-content .transaction-holder .contact-details p span {
                font-weight: 600;
            }

        .modular-content .transaction-holder .about-item img {
            width: 140px;
            margin-right: 30px;
            margin-bottom: 20px;
        }

        .modular-content .transaction-holder .about-item .about-item-text {
            width: calc(100% - 170px);
            padding: 10px 0;
        }

            .modular-content .transaction-holder .about-item .about-item-text h4 {
                font-weight: 400;
                font-size: 24px;
                color: #444;
                font-family: "Raleway", sans-serif;
            }

            .modular-content .transaction-holder .about-item .about-item-text h5 {
                font-size: 16px;
                font-weight: 400;
                font-family: "Raleway", sans-serif;
                color: #888;
                margin-bottom: 5px;
            }

            .modular-content .transaction-holder .about-item .about-item-text p {
                font-family: "Open Sans", sans-serif;
                font-size: 12px;
            }

        .modular-content .transaction-holder .about-content {
            margin: 20px;
        }

            .modular-content .transaction-holder .about-content h4 {
                color: #888;
                font-weight: 500;
                font-size: 16px;
                margin-bottom: 40px;
            }

                .modular-content .transaction-holder .about-content h4 a {
                    color: #888;
                }

                    .modular-content .transaction-holder .about-content h4 a:hover {
                        color: #000;
                    }

                .modular-content .transaction-holder .about-content h4.update {
                    color: #eb1c74;
                    margin-bottom: 10px;
                }

                    .modular-content .transaction-holder .about-content h4.update a {
                        color: #eb1c74;
                    }

                        .modular-content .transaction-holder .about-content h4.update a:hover {
                            color: #000;
                        }

                .modular-content .transaction-holder .about-content h4.title {
                    font-size: 20px !important;
                }

            .modular-content .transaction-holder .about-content p {
                font-size: 14px;
                margin-bottom: 20px;
                font-family: "Open Sans", sans-serif;
            }

                .modular-content .transaction-holder .about-content p.update {
                    margin-bottom: 30px;
                }

        .modular-content .transaction-holder a.button-stroke {
            height: auto;
            line-height: 14px;
            display: inline-block;
            font-weight: 500;
            padding: 7px 10px;
            font-size: 13px;
        }

            .modular-content .transaction-holder a.button-stroke:hover {
                background: #94d60a !important;
                color: #fff !important;
            }

        .modular-content .transaction-holder td a.button-stroke {
            line-height: 12px;
            padding: 7px 10px;
        }

            .modular-content .transaction-holder td a.button-stroke:hover {
                background: #eb1c74 !important;
            }

        .modular-content .transaction-holder td .button-fill.green.small {
            line-height: 14px;
            font-size: 14px;
            text-align: center;
            height: auto;
            padding: 4px 15px;
            min-width: 90px;
        }

        .modular-content .transaction-holder .table-holder {
            border-bottom: 1px solid #ededed;
            margin-bottom: 30px;
            width: auto;
            overflow-x: auto;
        }

        .modular-content .transaction-holder h3 {
            color: #eb1c74;
            font-weight: 400;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .modular-content .transaction-holder .no-damages {
            text-align: center;
            color: #888888;
            font-size: 16px;
            width: 100%;
        }

            .modular-content .transaction-holder .no-damages i {
                font-size: 120px;
                display: block;
                color: #ccc;
                font-weight: 400;
            }

            .modular-content .transaction-holder .no-damages span {
                position: relative;
                bottom: 60px;
            }

        .modular-content .transaction-holder table {
            margin-bottom: 40px;
            width: 100%;
            font-family: "Open Sans", sans-serif;
        }

            .modular-content .transaction-holder table thead th {
                padding-bottom: 20px;
            }

            .modular-content .transaction-holder table th {
                font-weight: 400;
                font-size: 14px;
                color: #999;
                text-align: left;
                padding: 15px;
            }

            .modular-content .transaction-holder table td {
                font-size: 12px;
                padding: 15px 10px;
            }

                .modular-content .transaction-holder table td.price {
                    font-weight: 700;
                    color: #eb1c74;
                    min-width: 90px;
                }

                .modular-content .transaction-holder table td.actions {
                    min-width: 130px;
                }

                .modular-content .transaction-holder table td.green {
                    font-weight: 700;
                    color: #94d60a;
                }

                .modular-content .transaction-holder table td.pink {
                    font-weight: 700;
                    color: #eb1c74;
                }

            .modular-content .transaction-holder table tbody tr:hover {
                background: #eee;
            }

            .modular-content .transaction-holder table.about-company {
                margin-bottom: 40px;
                width: 100%;
                font-family: "Open Sans", sans-serif;
            }

                .modular-content .transaction-holder table.about-company td {
                    font-size: 16px;
                    padding: 0;
                    padding-bottom: 5px;
                    color: #888;
                }

                    .modular-content .transaction-holder table.about-company td:first-child {
                        width: 40%;
                        color: #000;
                    }

                .modular-content .transaction-holder table.about-company tbody tr:hover {
                    background: inherit;
                }

        .modular-content .transaction-holder .partners {
            width: 100%;
            border: 1px solid #262847;
        }

            .modular-content .transaction-holder .partners tr:first-child td:first-child {
                border-top: none;
            }

            .modular-content .transaction-holder .partners thead th {
                background: #262847;
                text-align: center;
                color: #fff;
                padding: 15px 15px;
                font-size: 14px;
                color: #94d60a;
            }

                .modular-content .transaction-holder .partners thead th:first-child {
                    text-align: left;
                }

            .modular-content .transaction-holder .partners td {
                padding: 13px 15px;
                text-align: center;
                background: #f1f1f3;
            }

                .modular-content .transaction-holder .partners td:first-child {
                    text-align: left;
                }

            .modular-content .transaction-holder .partners .zebra td {
                background: #eeedf2;
            }

            .modular-content .transaction-holder .partners tr.last-child td {
                border-bottom: 1px solid #262847 !important;
            }

        .modular-content .transaction-holder .summary {
            margin: 20px;
        }

            .modular-content .transaction-holder .summary li {
                border: 2px #94d60a solid;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                margin-bottom: 20px;
                display: block;
            }

                .modular-content .transaction-holder .summary li:hover {
                    background-color: #94d60a;
                    color: #fff;
                }

                    .modular-content .transaction-holder .summary li:hover .summery-section {
                        color: #fff;
                    }

                        .modular-content .transaction-holder .summary li:hover .summery-section span.summary-title {
                            color: #fff;
                        }

                        .modular-content .transaction-holder .summary li:hover .summery-section span.summary-digits {
                            color: #fff;
                        }

                        .modular-content .transaction-holder .summary li:hover .summery-section i {
                            color: #fff;
                        }

                .modular-content .transaction-holder .summary li .summery-section {
                    display: flex;
                    align-items: center;
                    padding: 20px;
                }

                    .modular-content .transaction-holder .summary li .summery-section span.summary-title {
                        flex: 1;
                        font-family: "Raleway", sans-serif;
                        font-weight: 600;
                        font-size: 16px;
                        color: #444;
                    }

                    .modular-content .transaction-holder .summary li .summery-section span.summary-digits {
                        font-family: "Open Sans", sans-serif;
                        font-weight: 700;
                        font-size: 60px;
                        line-height: 1;
                        color: #bdbdbd;
                    }

                    .modular-content .transaction-holder .summary li .summery-section i {
                        color: #94d60a;
                        font-size: 48px;
                        position: relative;
                        margin-right: 20px;
                    }

        .modular-content .transaction-holder form {
            margin: 20px 0;
        }

            .modular-content .transaction-holder form .change-password {
                font-family: "Open Sans", sans-serif;
                font-size: 12px;
            }

                .modular-content .transaction-holder form .change-password a {
                    color: #eb1c74;
                }

                    .modular-content .transaction-holder form .change-password a:hover {
                        color: #444;
                    }

            .modular-content .transaction-holder form .change-password-content {
                margin: 20px 0;
                display: none;
            }

            .modular-content .transaction-holder form .btn-submit {
                font-weight: 500;
            }

        .modular-content .transaction-holder ul.pagination {
            display: inline-block;
            padding: 0;
            float: right;
            margin-top: 10px;
        }

            .modular-content .transaction-holder ul.pagination li {
                display: inline;
            }

                .modular-content .transaction-holder ul.pagination li a {
                    color: black;
                    float: left;
                    padding: 4px 12px;
                    text-decoration: none;
                    border-radius: 5px;
                }

                    .modular-content .transaction-holder ul.pagination li a.active {
                        background-color: #eb1c74;
                        color: white;
                        border-radius: 3px;
                    }

                    .modular-content .transaction-holder ul.pagination li a:hover:not(.active) {
                        background-color: #ddd;
                    }

    .modular-content > h6 {
        background: #eb1c74;
        height: 35px;
        line-height: 35px;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    }

.modular-navigation {
    width: 33%;
    background: #e4e4e4;
    margin-bottom: 40px;
}

    .modular-navigation li {
        display: block;
    }

        .modular-navigation li a {
            padding: 20px;
            display: block;
            font-size: 18px;
            color: #444444;
        }

            .modular-navigation li a span {
                display: block;
                font-size: 14px;
            }

            .modular-navigation li a:hover,
            .modular-navigation li.active > a {
                background: #94d60a;
                color: #fff;
            }

            .modular-navigation li a.attention p {
                text-decoration: underline;
                font-weight: 700;
                color: #e43d3d;
            }

            .modular-navigation li a.attention:hover {
                background-color: #e43d3d;
            }

                .modular-navigation li a.attention:hover p {
                    color: #fff;
                }

@media screen and (max-width: 780px) {
    .modular-content {
        width: 100%;
        margin-top: 20px;
    }

    .modular-header {
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .modular {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .modular-content .transaction-holder .summary {
        margin: 0;
    }

        .modular-content .transaction-holder .summary li .summery-section {
            padding: 10px;
        }

            .modular-content .transaction-holder .summary li .summery-section span.summary-title {
                font-size: 14px;
            }

            .modular-content .transaction-holder .summary li .summery-section span.summary-digits {
                font-size: 42px;
            }
}

.error-page {
    padding: 80px 0;
    text-align: center;
}

    .error-page .error-page-title {
        color: #262847;
        margin-bottom: 20px;
        font-size: 96px;
        font-family: "Open Sans", sans-serif;
    }

    .error-page .error-page-content {
        color: #262847;
    }

        .error-page .error-page-content h1 {
            font-size: 24px;
            color: #262847;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .error-page .error-page-content p {
            font-size: 18px;
        }

    .error-page a,
    .error-page button {
        font-weight: 400;
        margin-top: 50px;
    }

.maintenance-holder {
    padding: 80px 40px;
    text-align: center;
}

    .maintenance-holder .row {
        width: 100%;
    }

    .maintenance-holder img.logo,
    .maintenance-holder .maintenace-img {
        max-width: 360px;
        margin-bottom: 50px;
    }

    .maintenance-holder p {
        color: #94d60a;
        font-size: 32px;
        font-weight: 600;
    }

    .maintenance-holder span {
        color: #262847;
        font-size: 20px;
        font-weight: 400;
    }

@media screen and (max-width: 768px) {
    .maintenance-holder {
        padding: 40px 20px;
    }

        .maintenance-holder img.logo,
        .maintenance-holder .maintenace-img {
            max-width: 240px;
        }
}

@media screen and (max-width: 480px) {
    .maintenance-holder {
        padding: 40px 20px;
    }

        .maintenance-holder img.logo,
        .maintenance-holder .maintenace-img {
            max-width: 180px;
            margin-bottom: 30px;
        }

        .maintenance-holder p {
            font-size: 24px;
        }

        .maintenance-holder span {
            font-size: 16px;
        }
}

/* Tablet Breakpoint */
@media screen and (max-width: 768px) {
    .proposal-form .form-row .grid-2 {
        width: 100%;
        padding: 0 !important;
    }

    .proposal-form .checkbox-wrapper {
        margin: 0 0 20px 0 !important;
    }

        .proposal-form .checkbox-wrapper:last-child {
            margin-bottom: 0;
        }

    .proposal-form .input-wrapper label {
        font-size: 1em !important;
    }

        .proposal-form .input-wrapper label.checkbox-label {
            display: flex;
            align-items: center;
        }

    .products tr {
        border: 1px solid #dedede;
    }

    .modal-form .form {
        width: 100%;
    }
}

/* Mobile Breakpoint */
@media screen and (max-width: 480px) {
    .custom-select {
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .holder {
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .hero.hero-single .button-fill {
            margin-bottom: 0;
        }

        .hero h1 {
            font-size: 1.8em;
        }

        .hero p {
            font-size: 1em;
        }

            .hero p.small {
                font-size: 0.9em !important;
            }

        .hero.hero-single .form {
            margin-bottom: 0;
        }

    .proposal-form .form-row .grid-2 {
        width: 100%;
        padding: 0 !important;
    }

    .proposal-form .form-row .input-wrapper label {
        font-size: 1em !important;
    }

        .proposal-form .form-row .input-wrapper label.checkbox-label {
            display: flex;
            align-items: center;
        }

    .proposal-form .form-row .input-wrapper .card-details .custom-select {
        width: 48% !important;
    }

        .proposal-form .form-row .input-wrapper .card-details .custom-select:last-child {
            clear: both;
        }

    .proposal-form .form-row .input-wrapper .card-details input {
        width: 100% !important;
        float: none;
    }

    .proposal-form .btn-submit {
        margin-top: 0;
    }

    .proposal-form .havale-info {
        margin-bottom: 20px;
    }

    [type="checkbox"] + label:before {
        bottom: auto !important;
    }

    .modal-content .form-row .grid-2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .column .feature-holder .car-insurance-feature-icon {
        width: 50% !important;
    }

        .column .feature-holder .car-insurance-feature-icon i {
            font-size: 60px;
        }

    .product-feature-detail .holder {
        padding-left: 0;
        padding-right: 0;
    }

        .product-feature-detail .holder p {
            font-size: 1em !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .product-feature-detail .holder ul {
            padding-right: 0;
            margin-left: 0;
        }

        .product-feature-detail .holder .produc-desc-title .product-desc {
            font-size: 1em;
        }

        .product-feature-detail .holder .produc-desc-title h2 {
            font-size: 1.6em;
        }

    .holder .table-wrapper .holder {
        padding-right: 0;
        padding-left: 0;
    }

    .products tr {
        border: 1px solid #dedede;
    }

    .input-wrapper.grid-2 {
        width: 100%;
    }

    .form-row .grid-2 {
        width: 100%;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .modular-content .transaction-holder .about-item .about-item-text {
        width: 100%;
        padding: 10px 0;
    }

    .modular-content .table-holder.transaction-holder {
        padding: 10px;
    }

    .modular-content .transaction-holder table.about-company td {
        font-size: 0.8em;
    }

    .modular-content .transaction-holder .about-content {
        margin: 0;
    }

    .modular-header .heading p {
        font-size: 1.5em;
    }

    .not-found {
        margin-bottom: 80px;
        margin-top: 100px;
    }

        .not-found img {
            width: 70%;
        }
}

.l-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    text-align: center;
    z-index: 102;
}

svg.spinner {
    height: 120px;
    width: 120px;
    overflow: visible;
}

svg.logo {
    height: auto;
    width: 40px;
    margin: 0;
    position: absolute;
    display: block;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.g--circle {
    transform-origin: 60px 60px;
    fill: #ffffff;
    animation: opacity 1.2s linear infinite;
}

    .g--circle:nth-child(12n + 1) {
        animation-delay: -0.1s;
        transform: rotate(-30deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 2) {
        animation-delay: -0.2s;
        transform: rotate(-60deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 3) {
        animation-delay: -0.3s;
        transform: rotate(-90deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 4) {
        animation-delay: -0.4s;
        transform: rotate(-120deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 5) {
        animation-delay: -0.5s;
        transform: rotate(-150deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 6) {
        animation-delay: -0.6s;
        transform: rotate(-180deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 7) {
        animation-delay: -0.7s;
        transform: rotate(-210deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 8) {
        animation-delay: -0.8s;
        transform: rotate(-240deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 9) {
        animation-delay: -0.9s;
        transform: rotate(-270deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 10) {
        animation-delay: -1s;
        transform: rotate(-300deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 11) {
        animation-delay: -1.1s;
        transform: rotate(-330deg) translate(5px, 5px) scale(0.9);
    }

    .g--circle:nth-child(12n + 12) {
        animation-delay: -1.2s;
        transform: rotate(-360deg) translate(5px, 5px) scale(0.9);
    }

.g-circles--v1 .g--circle {
    fill-opacity: 0;
    animation-name: opacity;
}

@keyframes opacity {
    3% {
        fill-opacity: 1;
    }

    75% {
        fill-opacity: 0;
    }
}

@keyframes opacity-stroke {
    10% {
        stroke-opacity: 1;
    }

    85% {
        stroke-opacity: 0;
    }
}

@keyframes transform {
    10% {
        transform-origin: 70px 70px;
        transform: scale(0.75);
    }
}

.overlay-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 101;
    overflow: auto;
}

/** General Styles For Future Development **/
/* Block UI */
.block-ui {
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.06);
}

.block-icon {
    padding: 20px;
}

    .block-icon i {
        display: block;
        font-size: 36px;
        color: #1f2346;
        transform-origin: 50% 50% 0;
        -webkit-animation: rotateY 1s infinite linear;
        animation: rotateY 1s infinite linear;
    }

.block-message {
    padding: 0 20px 20px 20px;
    color: #484848;
}

.blockElement .block-icon {
    padding: 0;
}

.blockElement .block-ui {
    background-color: transparent;
    box-shadow: none;
    transform: none;
}

/* Grid */
.row.gutter-sm {
    margin-right: -5px;
    margin-left: -5px;
}

    .row.gutter-sm > [class^="col-"],
    .row.gutter-sm > [class*=" col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }

/* Colors */
.text-pink {
    color: #eb1c74;
}

.text-green {
    color: #94d60a;
}

.text-blue {
    color: #1f2346;
}

.text-dark-blue {
    color: #262847;
}

.text-gray {
    color: #888;
}

.text-red {
    color: #e83636;
}

.bg-red {
    background-color: #e83636 !important;
}

.text-link {
    color: #eb1c74;
}

    .text-link:hover {
        color: #1f2346;
    }

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weigth-medium {
    font-weight: 500 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.d-inline {
    display: inline;
}

/* Forms */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    color: #121212;
    font-size: 16px;
    font-weight: 700;
}

    .form-label .tip {
        cursor: help;
        display: inline-block;
        line-height: 12px;
        padding-left: 1px;
        margin-left: 2px;
        width: 14px;
        height: 14px;
        text-align: center;
        color: #747474;
        border: 1px solid #747474;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
    }

.form-label-header {
    margin-bottom: 30px;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: #6e6e6e;
    margin: -5px 0 10px 0;
}

.form-top {
    margin-bottom: 5px;
}

    .form-top .form-label {
        float: left;
        vertical-align: bottom;
        margin: 0;
    }

    .form-top .form-top-extra {
        float: right;
    }

        .form-top .form-top-extra .form-link {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #2e304d;
        }

            .form-top .form-top-extra .form-link:hover {
                color: #eb1c74;
            }

            .form-top .form-top-extra .form-link i {
                display: block;
                margin-right: 4px;
                float: left;
            }

        .form-top .form-top-extra .form-checkbox {
            margin: 0;
        }

            .form-top .form-top-extra .form-checkbox label {
                display: block;
                color: #121212;
                font-size: 12px;
                font-weight: 700;
                padding-left: 26px;
            }

                .form-top .form-top-extra .form-checkbox label:before, .form-top .form-top-extra .form-checkbox label:after {
                    top: -3px;
                }

    .form-top:before, .form-top:after {
        content: "";
        display: block;
        height: 0;
        overflow: hidden;
    }

    .form-top:after {
        clear: both;
    }

.form-control {
    display: block;
    background: #fff;
    color: #202020;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 12px;
    border: 1px solid #e4e4e4;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.06);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .form-control::-webkit-input-placeholder {
        color: #a4a4a4;
    }

    .form-control:-moz-placeholder {
        color: #a4a4a4;
    }

    .form-control::-moz-placeholder {
        color: #a4a4a4;
    }

    .form-control:-ms-input-placeholder {
        color: #a4a4a4;
    }

    .form-control[readonly] {
        background-color: #e9ecef;
        opacity: 1;
    }

.select2-container--qs .selection {
    display: block;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 12px;
    border: 1px solid #e4e4e4;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.06);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .select2-container--qs .selection .select2-selection {
        position: relative;
        height: 24px;
    }

        .select2-container--qs .selection .select2-selection .select2-selection__arrow {
            top: 0;
            right: 0;
            position: absolute;
        }

            .select2-container--qs .selection .select2-selection .select2-selection__arrow:before {
                line-height: 24px;
                color: #bebebe;
            }

.select2-container--qs .select2-dropdown {
    top: 0;
    left: 0;
    border-color: #e4e4e4;
}

    .select2-container--qs .select2-dropdown .select2-search--dropdown {
        padding: 0;
        border-bottom: 1px solid #e4e4e4;
    }

        .select2-container--qs .select2-dropdown .select2-search--dropdown .select2-search__field {
            padding: 10px 12px;
        }

    .select2-container--qs .select2-dropdown .select2-results .select2-results__options {
        max-height: 224px;
        overflow-y: auto;
    }

        .select2-container--qs .select2-dropdown .select2-results .select2-results__options .select2-results__option {
            padding: 10px 12px;
            text-align: left;
        }

    .select2-container--qs .select2-dropdown .select2-results .select2-results__option--highlighted[aria-selected] {
        background-color: #eb1c74;
        color: #fff;
    }

.select2-container--qs.select2-container--below.select2-container--open .selection {
    -webkit-border-bottom-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
    -ms-border-bottom-left-radius: 0;
    -o-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
    -ms-border-bottom-right-radius: 0;
    -o-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--qs.select2-container--above.select2-container--open .selection {
    -webkit-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    -ms-border-top-left-radius: 0;
    -o-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
    -ms-border-top-right-radius: 0;
    -o-border-top-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group-append .select2-container--qs .selection {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group-prepend .select2-container--qs .selection {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.form-sub-title {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #eb1c74;
}

    .form-sub-title.title-secondary {
        font-family: "Open Sans", sans-serif;
    }

@media screen and (min-width: 768px) {
    .form-sub-title {
        font-size: 24px;
    }
}

/* Error Messages */
.form-group .help-block {
    position: relative;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.2;
    background-color: rgba(9, 47, 87, 0.9);
    color: #fff;
    margin-top: 4px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

    .form-group .help-block:after {
        position: absolute;
        left: 10px;
        top: -4px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        pointer-events: none;
        border-color: rgba(9, 47, 87, 0);
        border-bottom-color: rgba(9, 47, 87, 0.9);
        border-width: 4px;
        margin-top: -4px;
    }

@media screen and (min-width: 768px) {
    .landing-proposal .form-group,
    .landing-form .form-group {
        position: relative;
    }

        .landing-proposal .form-group .help-block,
        .landing-form .form-group .help-block {
            position: absolute;
            display: block;
            width: 100%;
            top: 46px;
            left: -100%;
            margin: 0;
            transform: translate(0, -50%);
            z-index: 100;
        }

            .landing-proposal .form-group .help-block:after,
            .landing-form .form-group .help-block:after {
                left: 100%;
                top: 50%;
                border-color: rgba(9, 47, 87, 0);
                border-left-color: rgba(9, 47, 87, 0.9);
            }

    .landing-proposal .form-checkbox .help-block,
    .landing-form .form-checkbox .help-block {
        top: 10px;
    }
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control,
    .input-group > .custom-select,
    .input-group > .custom-file {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        margin-bottom: 0;
    }

        .input-group > .form-control + .form-control,
        .input-group > .form-control + .custom-select,
        .input-group > .form-control + .custom-file,
        .input-group > .custom-select + .form-control,
        .input-group > .custom-select + .custom-select,
        .input-group > .custom-select + .custom-file,
        .input-group > .custom-file + .form-control,
        .input-group > .custom-file + .custom-select,
        .input-group > .custom-file + .custom-file {
            margin-left: -1px;
        }

        .input-group > .form-control:focus,
        .input-group > .custom-select:focus,
        .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
            z-index: 3;
        }

        .input-group > .custom-file .custom-file-input:focus {
            z-index: 4;
        }

        .input-group > .form-control:not(:last-child),
        .input-group > .custom-select:not(:last-child) {
            border-bottom-right-radius: 0;
            border-top-right-radius: 0;
        }

        .input-group > .form-control:not(:first-child),
        .input-group > .custom-select:not(:first-child) {
            border-bottom-left-radius: 0;
            border-top-left-radius: 0;
        }

    .input-group > .custom-file {
        display: flex;
        align-items: center;
    }

        .input-group > .custom-file:not(:last-child) .custom-file-label,
        .input-group > .custom-file:not(:last-child) .custom-file-label::after {
            border-bottom-right-radius: 0;
            border-top-right-radius: 0;
        }

        .input-group > .custom-file:not(:first-child) .custom-file-label {
            border-bottom-left-radius: 0;
            border-top-left-radius: 0;
        }

.input-group-prepend,
.input-group-append {
    display: flex;
}

    .input-group-prepend .btn,
    .input-group-append .btn {
        position: relative;
        z-index: 2;
    }

        .input-group-prepend .btn + .btn,
        .input-group-prepend .btn + .input-group-text,
        .input-group-prepend .input-group-text + .input-group-text,
        .input-group-prepend .input-group-text + .btn,
        .input-group-append .btn + .btn,
        .input-group-append .btn + .input-group-text,
        .input-group-append .input-group-text + .input-group-text,
        .input-group-append .input-group-text + .btn {
            margin-left: -1px;
        }

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #bebebe;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .input-group-text input[type="radio"],
    .input-group-text input[type="checkbox"] {
        margin-top: 0;
    }

.input-group > .input-group-prepend > .qs-btn,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .qs-btn,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group > .input-group-append > .qs-btn,
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .qs-btn,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .qs-btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.m-radio,
.m-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .m-radio.m-radio--disabled, .m-radio.m-checkbox--disabled,
    .m-checkbox.m-radio--disabled,
    .m-checkbox.m-checkbox--disabled {
        opacity: 0.8;
        filter: alpha(opacity=80);
        cursor: not-allowed;
    }

    .m-radio > input,
    .m-checkbox > input {
        position: absolute;
        z-index: -1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .m-radio > span,
    .m-checkbox > span {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        background: none;
        position: absolute;
        top: 3px;
        left: 0;
        height: 20px;
        width: 20px;
        border: 1px solid #e4e4e4;
    }

        .m-radio > span:after,
        .m-checkbox > span:after {
            content: "";
            position: absolute;
            display: none;
        }

    .m-radio > input:checked ~ span,
    .m-checkbox > input:checked ~ span {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        background: none;
    }

        .m-radio > input:checked ~ span:after,
        .m-checkbox > input:checked ~ span:after {
            display: block;
            background-color: #eb1c74;
        }

    .m-radio:hover > input:not([disabled]):checked ~ span,
    .m-radio > input:checked ~ span,
    .m-checkbox:hover > input:not([disabled]):checked ~ span,
    .m-checkbox > input:checked ~ span {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .m-radio > input:disabled ~ span,
    .m-checkbox > input:disabled ~ span {
        opacity: 0.6;
        filter: alpha(opacity=60);
        pointer-events: none;
    }

    .m-radio.m-radio--solid > span, .m-radio.m-checkbox--solid > span,
    .m-checkbox.m-radio--solid > span,
    .m-checkbox.m-checkbox--solid > span {
        border: 1px solid transparent;
    }

    .m-radio.m-radio--solid:hover > input:not([disabled]) ~ span,
    .m-radio.m-radio--solid > input:focus ~ span, .m-radio.m-checkbox--solid:hover > input:not([disabled]) ~ span,
    .m-radio.m-checkbox--solid > input:focus ~ span,
    .m-checkbox.m-radio--solid:hover > input:not([disabled]) ~ span,
    .m-checkbox.m-radio--solid > input:focus ~ span,
    .m-checkbox.m-checkbox--solid:hover > input:not([disabled]) ~ span,
    .m-checkbox.m-checkbox--solid > input:focus ~ span {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .m-radio.m-radio--square > span, .m-radio.m-checkbox--square > span,
    .m-checkbox.m-radio--square > span,
    .m-checkbox.m-checkbox--square > span {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .m-radio.m-checkbox--bold > span,
    .m-radio.m-radio--bold > span,
    .m-checkbox.m-checkbox--bold > span,
    .m-checkbox.m-radio--bold > span {
        border-width: 2px !important;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .m-radio > span {
        -webkit-border-radius: 50% !important;
        -moz-border-radius: 50% !important;
        -ms-border-radius: 50% !important;
        -o-border-radius: 50% !important;
        border-radius: 50% !important;
    }

        .m-radio > span:after {
            top: 50%;
            left: 50%;
            margin-left: -5px;
            margin-top: -5px;
            height: 10px;
            width: 10px;
            border-radius: 100% !important;
        }

    .m-radio.m-radio--single {
        width: 20px;
        height: 20px;
    }

        .m-radio.m-radio--single > span {
            top: 0px;
        }

th > .m-radio.m-radio--single,
td > .m-radio.m-radio--single {
    right: -5px;
}

.m-checkbox > span:after {
    top: 50%;
    left: 50%;
    margin-left: -2px;
    margin-top: -6px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg);
}

.form-inline .m-checkbox {
    margin-left: 15px;
    margin-right: 15px;
}

.m-checkbox.m-checkbox--single {
    width: 20px;
    height: 20px;
}

    .m-checkbox.m-checkbox--single > span {
        top: 0px;
    }

th > .m-checkbox.m-checkbox--single,
td > .m-checkbox.m-checkbox--single {
    right: -5px;
}

.m-checkbox-list,
.m-radio-list {
    padding: 0 0;
}

.form-horizontal .form-group .m-checkbox-list, .form-horizontal .form-group
.m-radio-list {
    padding-top: 0;
}

.m-checkbox-list .m-checkbox,
.m-checkbox-list .m-radio,
.m-radio-list .m-checkbox,
.m-radio-list .m-radio {
    display: block;
}

    .m-checkbox-list .m-checkbox:last-child,
    .m-checkbox-list .m-radio:last-child,
    .m-radio-list .m-checkbox:last-child,
    .m-radio-list .m-radio:last-child {
        margin-bottom: 5px;
    }

.m-checkbox-inline,
.m-radio-inline {
    padding: 0 0;
}

    .m-checkbox-inline .m-checkbox,
    .m-checkbox-inline .m-radio,
    .m-radio-inline .m-checkbox,
    .m-radio-inline .m-radio {
        display: inline-block;
        margin-right: 15px;
        margin-bottom: 10px;
    }

        .m-checkbox-inline .m-checkbox:last-child,
        .m-checkbox-inline .m-radio:last-child,
        .m-radio-inline .m-checkbox:last-child,
        .m-radio-inline .m-radio:last-child {
            margin-right: 0;
        }

.m-form__group.row .m-checkbox-inline,
.m-form__group.row .m-radio-inline {
    margin-top: 5px;
}

.m-form__group.row .m-checkbox-list,
.m-form__group.row .m-radio-list {
    margin-top: 2px;
}

.form-group--icon {
    padding-left: 40px;
    position: relative;
    margin-bottom: 20px;
}

    .form-group--icon .form-label {
        font-family: "Open Sans", sans-serif;
        font-weight: 400;
        line-height: 1.2;
        color: #484848;
        margin-bottom: 10px;
    }

    .form-group--icon .form-control {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .form-group--icon .select2-container--qs .selection {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .form-group--icon::before {
        position: absolute;
        display: block;
        content: "";
        top: -6px;
        left: 0;
        width: 30px;
        height: 30px;
        line-height: 30px;
        background-color: #f5f5f5;
        border-radius: 50%;
        text-align: center;
    }

    .form-group--icon.required::before {
        font-size: 12px;
        content: "\2731";
        font-weight: 900;
        color: #e83636;
    }

    .form-group--icon .fv-control-feedback {
        top: -6px !important;
        left: 0;
        width: 30px;
        height: 30px;
        line-height: 30px;
        background-color: #f5f5f5;
        border-radius: 50%;
    }

    .form-group--icon.has-warning .fv-control-feedback {
        color: #fff;
        background-color: #e83636;
    }

    .form-group--icon.has-error .fv-control-feedback {
        color: #fff;
        background-color: #e83636;
    }

    .form-group--icon.has-success .fv-control-feedback {
        color: #fff;
        background-color: #94d60a;
    }

.form-group--no-icon {
    padding-left: 40px;
    margin-bottom: 30px;
}

    .form-group--no-icon.no-icon-checkbox {
        padding-left: 0;
        margin-bottom: 30px;
    }

@media screen and (min-width: 768px) {
    .form-group--icon {
        margin-bottom: 30px;
    }
}

/* Buttons */
.qs-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 12px;
    line-height: 1.45;
    transition: all 200ms ease-in-out;
    transition-property: box-shadow, color, padding, background, font-size;
    text-align: center;
    color: #1f2346;
}

    .qs-btn:hover {
        color: #eb1c74;
    }

.qs-btn-block {
    display: block;
    width: 100%;
}

.qs-btn-pink {
    background-color: #eb1c74;
    border-radius: 6px;
    color: #fff;
}

    .qs-btn-pink:hover {
        background-color: #ef498f;
        color: #fff;
    }

    .qs-btn-pink.qs-btn-glow {
        box-shadow: 0px 5px 16px 0px rgba(247, 22, 139, 0.5);
    }

        .qs-btn-pink.qs-btn-glow:hover {
            box-shadow: 0px 5px 16px 0px rgba(239, 73, 143, 0.5);
        }

    .qs-btn-pink.qs-btn-outline {
        background-color: transparent;
        color: #eb1c74;
        border: 1px solid #eb1c74;
    }

        .qs-btn-pink.qs-btn-outline:hover {
            background-color: #eb1c74;
            color: #fff;
        }

.qs-btn-blue {
    background-color: #1f2346;
    border-radius: 6px;
    color: #fff;
}

    .qs-btn-blue:hover {
        background-color: #383f7e;
        color: #fff;
    }

    .qs-btn-blue.qs-btn-glow {
        box-shadow: 0px 5px 16px 0px rgba(9, 47, 87, 0.5);
    }

        .qs-btn-blue.qs-btn-glow:hover {
            box-shadow: 0px 5px 16px 0px rgba(56, 63, 126, 0.5);
        }

    .qs-btn-blue.qs-btn-outline {
        background-color: transparent;
        color: #1f2346;
        border: 1px solid #1f2346;
    }

        .qs-btn-blue.qs-btn-outline:hover {
            background-color: #1f2346;
            color: #fff;
        }

.qs-btn-green {
    background-color: #94d60a;
    border-radius: 6px;
    color: #fff;
}

    .qs-btn-green:hover {
        background-color: #b1f424;
        color: #fff;
    }

    .qs-btn-green.qs-btn-glow {
        box-shadow: 0px 5px 16px 0px rgba(148, 214, 10, 0.5);
    }

        .qs-btn-green.qs-btn-glow:hover {
            box-shadow: 0px 5px 16px 0px rgba(177, 244, 36, 0.5);
        }

    .qs-btn-green.qs-btn-outline {
        background-color: transparent;
        color: #94d60a;
        border: 1px solid #94d60a;
    }

        .qs-btn-green.qs-btn-outline:hover {
            background-color: #94d60a;
            color: #fff;
        }

.qs-btn-white {
    background-color: #fff;
    border-radius: 6px;
    color: #eb1c74;
}

    .qs-btn-white:first-child {
        margin-left: 0;
    }

    .qs-btn-white:hover {
        background-color: #eb1c74;
        color: #fff;
    }

    .qs-btn-white.qs-btn-outline {
        background-color: transparent;
        color: #fff;
        border: 1px solid #ffffff;
    }

        .qs-btn-white.qs-btn-outline:hover {
            background-color: #fff;
            color: #eb1c74;
        }

.qs-btn-grey {
    background-color: #f6f6f6;
    border-radius: 6px;
    color: #1f2346;
}

    .qs-btn-grey:hover {
        background-color: #1f2346;
        color: #fff;
    }

    .qs-btn-grey.qs-btn-glow {
        box-shadow: 0px 5px 16px 0px rgba(246, 246, 246, 0.5);
    }

        .qs-btn-grey.qs-btn-glow:hover {
            box-shadow: 0px 5px 16px 0px rgba(9, 47, 87, 0.5);
        }

.qs-btn-darkgrey {
    background-color: #dedede;
    border-radius: 6px;
    color: #1f2346;
}

    .qs-btn-darkgrey:hover {
        background-color: #1f2346;
        color: #fff;
    }

    .qs-btn-darkgrey.qs-btn-glow {
        box-shadow: 0px 5px 16px 0px rgba(246, 246, 246, 0.5);
    }

        .qs-btn-darkgrey.qs-btn-glow:hover {
            box-shadow: 0px 5px 16px 0px rgba(9, 47, 87, 0.5);
        }

.qs-btn:disabled,
.qs-btn.qs-btn-glow:disabled {
    background-color: #999999;
    color: #fff;
}

    .qs-btn:disabled:hover,
    .qs-btn.qs-btn-glow:disabled:hover {
        box-shadow: 0px 5px 16px 0px rgba(153, 153, 153, 0.5);
    }

.qs-btn-glow:disabled {
    box-shadow: 0px 5px 16px 0px rgba(153, 153, 153, 0.5);
}

.qs-btn-pill {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    border-radius: 24px;
    padding: 10px 24px;
}

.qs-btn-padding {
    padding: 10px 24px;
}

.qs-btn-lg {
    padding: 10px 12px;
    font-size: 14px;
}

.qs-btn-sm {
    font-size: 14px;
}

    .qs-btn-sm i {
        font-size: 14px;
        position: relative;
        top: 1px;
        margin-right: 4px;
    }

.qs-btn-narrow {
    font-size: 14px;
}

@media screen and (min-width: 992px) {
    .no-label-md {
        margin-top: 29px;
    }

    .qs-btn-lg {
        padding: 15px 36px;
        font-size: 18px;
    }
}

/* Titles */
.title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

    .title .title-1 {
        display: block;
        color: #eb1c74;
        font-weight: 800;
    }

        .title .title-1 span {
            font-weight: 500;
        }

        .title .title-1 .text--blue {
            font-weight: 500;
            color: #1f2346;
        }

        .title .title-1 .title-home-small {
            font-size: 20px;
            font-weight: 600;
        }

    .title .title-2 {
        color: #262847;
        font-weight: 500;
    }

    .title .d-inline .title-2 {
        padding-left: 0.375rem;
    }

.title--white .title-1 {
    color: #fff;
}

.title--white .title-2 {
    color: #fff;
}

.sub-title {
    font-size: 20px;
    line-height: 1.2;
    color: #1f2346;
    margin: 20px 0;
}

    .sub-title span {
        color: #eb1c74;
    }

.separator-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    color: #eb1c74;
    margin-bottom: 30px;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .title {
        font-size: 36px;
    }

        .title .title-2 {
            display: block;
        }

    .sub-title {
        font-size: 24px;
    }
}

/* Panels */
.panel {
    background: #f4f4f4;
    color: #121212;
    padding: 20px 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.panel-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.005em;
    margin-bottom: 20px;
}

.panel-title--l {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    margin-bottom: 20px;
}

.panel-description {
    margin-bottom: 20px;
}

.panel-title--pink {
    color: #eb1c74;
}

.panel--white {
    background-color: #fff;
}

.panel--margin-top {
    margin-top: 30px;
}

.panel--tabbed {
    background: transparent;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

    .panel--tabbed .panel-content {
        padding: 20px 30px;
        background-color: #f4f4f4;
        -webkit-border-radius: 0 0 6px 6px;
        -moz-border-radius: 0 0 6px 6px;
        -ms-border-radius: 0 0 6px 6px;
        -o-border-radius: 0 0 6px 6px;
        border-radius: 0 0 6px 6px;
    }

.panel-tabs {
    overflow: hidden;
    display: flex;
}

    .panel-tabs .tab-link {
        display: flex;
        flex: 1;
        align-items: center;
        text-align: center;
        justify-content: center;
        background-color: #1f2346;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        line-height: 18px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-width: 0 1px 0 0;
        height: 54px;
    }

        .panel-tabs .tab-link:first-child {
            -webkit-border-radius: 6px 0 0 0;
            -moz-border-radius: 6px 0 0 0;
            -ms-border-radius: 6px 0 0 0;
            -o-border-radius: 6px 0 0 0;
            border-radius: 6px 0 0 0;
        }

        .panel-tabs .tab-link:last-child {
            -webkit-border-radius: 0 6px 0 0;
            -moz-border-radius: 0 6px 0 0;
            -ms-border-radius: 0 6px 0 0;
            -o-border-radius: 0 6px 0 0;
            border-radius: 0 6px 0 0;
            border: none;
        }

        .panel-tabs .tab-link:hover {
            background-color: #eb1c74;
            border-color: #eb1c74;
            color: #fff;
        }

        .panel-tabs .tab-link.active {
            background-color: #f4f4f4;
            border-color: #f4f4f4;
            color: #eb1c74;
        }

@media screen and (min-width: 768px) {
    .panel-tabs .tab-link {
        font-size: 14px;
        min-height: 70px;
    }
}

/* Tables */
.table {
    background-color: #f4f4f4;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    color: #3a3a3a;
    line-height: 1.2;
    font-size: 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

    .table table {
        table-layout: fixed;
        width: 100%;
        border-collapse: separate;
    }

    .table tr td {
        padding: 20px;
        border-right: 1px solid #dfdfdf;
    }

        .table tr td:first-child {
            border-left: 1px solid #dfdfdf;
        }

    .table tr:last-child td, .table tr.last td {
        border-bottom: 1px solid #dfdfdf;
    }

        .table tr:last-child td:first-child, .table tr.last td:first-child {
            border-bottom-left-radius: 6px;
        }

        .table tr:last-child td:last-child, .table tr.last td:last-child {
            border-bottom-right-radius: 6px;
        }

    .table tr:nth-child(even) td {
        background-color: #fdfdfd;
    }

    .table thead td,
    .table thead th,
    .table .head td,
    .table .head th {
        height: 60px;
        font-weight: 700;
        background-color: #f4f4f4;
        padding: 12px 20px;
        border-right: 1px solid #dfdfdf;
        vertical-align: middle;
        text-align: center;
    }

        .table thead td .description,
        .table thead th .description,
        .table .head td .description,
        .table .head th .description {
            display: block;
            margin-top: 5px;
            font-size: 14px;
            font-weight: 600;
            color: #5f5f5f;
        }

        .table thead td:first-child,
        .table thead th:first-child,
        .table .head td:first-child,
        .table .head th:first-child {
            text-align: left;
            border-left: 1px solid #dfdfdf;
        }

    .table thead:first-child td,
    .table thead:first-child th,
    .table .head:first-child td,
    .table .head:first-child th {
        border-top: 1px solid #dfdfdf;
    }

        .table thead:first-child td:first-child,
        .table thead:first-child th:first-child,
        .table .head:first-child td:first-child,
        .table .head:first-child th:first-child {
            border-top-left-radius: 6px;
        }

        .table thead:first-child td:last-child,
        .table thead:first-child th:last-child,
        .table .head:first-child td:last-child,
        .table .head:first-child th:last-child {
            border-top-right-radius: 6px;
        }

    .table .head + tr td,
    .table tr.first td {
        -webkit-box-shadow: inset 0px 13px 8px -8px rgba(0, 0, 0, 0.09);
        -moz-box-shadow: inset 0px 13px 8px -8px rgba(0, 0, 0, 0.09);
        box-shadow: inset 0px 13px 8px -8px rgba(0, 0, 0, 0.09);
    }

    .table.table-sm td {
        padding: 12px 20px;
    }

    .table.table--b td {
        font-size: 14px;
        padding: 10px;
    }

    .table.dataTable tbody tr:first-child td {
        -webkit-box-shadow: inset 0px 13px 8px -8px rgba(0, 0, 0, 0.09);
        -moz-box-shadow: inset 0px 13px 8px -8px rgba(0, 0, 0, 0.09);
        box-shadow: inset 0px 13px 8px -8px rgba(0, 0, 0, 0.09);
    }

.table-pager {
    margin-top: 20px;
}

    .table-pager .page-number {
        display: inline-block;
        min-width: 34px;
        padding: 4px 8px;
        text-align: center;
        margin-right: 6px;
        border: 1px solid #dfdfdf;
        cursor: pointer;
        font-weight: 600;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        transition: all 200ms ease-in-out;
    }

        .table-pager .page-number:hover {
            border-color: #1f2346;
        }

        .table-pager .page-number.active {
            border-color: #eb1c74;
        }

.table-responsive {
    overflow-x: auto;
}

    .table-responsive table {
        table-layout: auto;
        width: 100%;
    }

.v-table {
    line-height: 1.2;
    font-size: 14px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f3f3f3;
    font-family: "Open Sans", sans-serif;
}

    .v-table table {
        table-layout: fixed;
        width: 100%;
    }

        .v-table table thead tr {
            background-color: #1f2346;
        }

            .v-table table thead tr th {
                text-align: left;
                padding: 15px 20px;
                color: #fff;
                font-weight: 600;
            }

        .v-table table tbody tr td {
            padding: 15px 20px;
        }

        .v-table table tbody tr:nth-child(2n) td {
            background-color: #f3f3f3;
        }

.table-big tr td {
    padding: 10px 20px;
}

.table-big .qs-btn {
    padding: 5px;
}

.table .list {
    font-size: 16px !important;
    margin-top: 20px;
    margin-bottom: 40px;
}

.table-footnote {
    font-size: 24px;
    font-weight: 700;
}

.table-footnote-desc {
    font-size: 14px;
    font-weight: 700;
}

@media screen and (max-width: 480px) {
    .table {
        font-size: 12px;
    }

        .table table tr td,
        .table table tr th {
            padding: 12px 10px;
        }

            .table table tr td i,
            .table table tr th i {
                font-size: 10px;
            }

        .table table .head td {
            height: auto;
            padding: 12px 10px;
            font-size: 10px;
        }

            .table table .head td .description {
                display: none;
            }
}

/* Accordion */
.accordion {
    border: 1px solid #dfdfdf;
    background: #f5f5f5;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

.accordion-top {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 20px 24px;
    cursor: pointer;
}

    .accordion-top:hover .accordion-title {
        color: #eb1c74;
    }

    .accordion-top:active .accordion-title, .accordion-top:focus .accordion-title {
        color: #1f2346;
    }

.accordion-icon {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 16px;
}

    .accordion-icon span {
        position: relative;
        display: block;
        height: 16px;
        width: 16px;
    }

        .accordion-icon span::before, .accordion-icon span::after {
            display: block;
            top: 0;
            left: 0;
            content: "";
            position: absolute;
            width: 2px;
            height: 16px;
            background-color: #262847;
            transition: all 200ms ease-in-out;
        }

        .accordion-icon span::before {
            left: 7px;
        }

        .accordion-icon span::after {
            display: block;
            content: "";
            position: absolute;
            top: 7px;
            width: 16px;
            height: 2px;
        }

.list-flex-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    max-height: 196px;
}

.list-flex-content-shadow {
    box-shadow: 2px 0 2px -2px #888;
}

@media screen and (min-width: 900px) {
    .list-flex-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        max-height: 196px;
    }

        .list-flex-content .list-flex-content img {
            margin: 1rem 3rem 1rem 4.2rem;
            height: 68px;
            width: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .list-flex-content .list-flex-content p {
            font-size: 0.8rem !important;
            text-align: center;
            flex-direction: column;
            justify-content: center;
            font-family: "Raleway", sans-serif;
        }
}

.list-flex-content img {
    margin: 1rem 3rem 1rem 4.2rem;
    height: 68px;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.list-flex-content p {
    font-size: 1rem !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: "Raleway", sans-serif;
}

.accordion.open .accordion-icon span::before {
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}

.accordion-title {
    display: table-cell;
    font-size: 20px;
    font-weight: 500;
    color: #262847;
    padding-left: 0.8em;
    line-height: 1.2;
}

.accordion-content {
    padding: 0 24px 30px 24px;
}

    .accordion-content p {
        color: #3a3a3a;
        font-weight: 500;
        font-size: 16px;
        margin-bottom: 20px;
    }

        .accordion-content p:last-child {
            margin-bottom: 0;
        }

    .accordion-content a {
        cursor: pointer;
        color: #eb1c74;
    }

        .accordion-content a:hover {
            color: #1f2346;
        }

    .accordion-content .list {
        font-size: 16px !important;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .accordion-content h3 {
        color: #eb1c74;
    }

@media screen and (max-width: 480px) {
    .accordion-top {
        padding: 10px 12px;
        cursor: pointer;
    }

        .accordion-top:hover .accordion-title {
            color: #eb1c74;
        }

    .accordion-icon {
        width: 12px;
    }

        .accordion-icon span {
            height: 12px;
            width: 12px;
        }

            .accordion-icon span::before, .accordion-icon span::after {
                width: 2px;
                height: 12px;
            }

            .accordion-icon span::before {
                left: 5px;
            }

            .accordion-icon span::after {
                top: 5px;
                width: 12px;
                height: 2px;
            }

    .accordion-title {
        font-size: 12px;
    }

    .accordion-content {
        font-size: 12px;
        padding: 0 12px 15px 12px;
    }

        .accordion-content p {
            font-size: 12px;
        }
}

/* Icon List */
.list-icon .list-item {
    display: table;
    color: #020202;
    margin-bottom: 20px;
}

    .list-icon .list-item i {
        display: table-cell;
        vertical-align: middle;
        font-size: 22px;
        width: 28px;
    }

        .list-icon .list-item i.icon-document-pdf {
            font-size: 28px;
        }

    .list-icon .list-item .text {
        display: table-cell;
        vertical-align: middle;
        font-size: 18px;
        font-weight: 500;
        padding-left: 15px;
    }

    .list-icon .list-item:hover {
        color: #eb1c74;
    }

    .list-icon .list-item:last-child {
        margin-bottom: 0;
    }

@media screen and (max-width: 480px) {
    .list-icon .list-item {
        margin-bottom: 10px;
    }

        .list-icon .list-item i {
            font-size: 16px;
        }

        .list-icon .list-item .text {
            font-size: 12px;
            font-weight: 500;
        }
}

/* Button Grid */
.button-grid .button-grid-item {
    display: block;
    flex: 1;
    margin: 20px 0;
    background: #f4f4f4;
    color: #121212;
    padding: 20px 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    transition: transform 200ms ease-in-out;
}

    .button-grid .button-grid-item:hover {
        transform: translateY(-6px);
    }

.button-grid .button-grid-item_title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.005em;
    margin-bottom: 10px;
    color: #eb1c74;
}

.button-grid .button-grid-item_description {
    display: block;
    font-size: 16px;
}

.button-grid .qs-btn {
    margin-top: 20px;
}

.modal--rounded {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    max-width: 640px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

.modal--lg {
    max-width: 800px;
}

.modal--xxl {
    max-width: 1500px;
}

.preview-item {
    margin-bottom: 10px;
}

.preview-item_label {
    font-size: 14px;
}

.preview-item_content {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #1f2346;
}

.preview-item_map {
    height: 300px;
    position: relative;
}

    .preview-item_map:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 100%;
    }

    .preview-item_map > .ratio-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .preview-item_map .location-map {
        width: 100%;
        height: 100%;
    }

/* Confirmation */
.confirmation-content {
    font-size: 14px;
}

    .confirmation-content .panel {
        margin: 20px 0;
    }

    .confirmation-content p {
        margin: 20px 0;
    }

        .confirmation-content p:first-child {
            margin-top: 0;
        }

.qs-btn-m-b-mobile {
    margin-bottom: 20px;
}

.confirmation-success {
    text-align: center;
    padding: 40px 0;
}

    .confirmation-success .confirmation-success_icon {
        font-size: 32px;
        margin-bottom: 20px;
        background: #94d60a;
        color: #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        text-align: center;
        padding: 16px;
    }

    .confirmation-success .confirmation-success_title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .confirmation-success .confirmation-success_content {
        padding: 0 30px;
    }

        .confirmation-success .confirmation-success_content p {
            margin-bottom: 10px;
        }

            .confirmation-success .confirmation-success_content p:last-child {
                margin-bottom: 0;
            }

@media screen and (min-width: 768px) {
    .confirmation-content {
        font-size: inherit;
    }

    .qs-btn-m-b-mobile {
        margin-bottom: 0;
    }
}

/* Page Content */
.page-content {
    padding: 30px 0;
    color: #121212;
}

    .page-content .title {
        font-size: 20px;
        margin: 15px 0;
    }

        .page-content .title:first-child {
            margin-top: 0;
        }

    .page-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

.page-content--white {
    background: #fbfbfb;
}

@media screen and (min-width: 768px) {
    .page-content {
        padding: 50px 0;
    }

        .page-content .title {
            font-size: 36px;
            margin: 60px 0 30px 0;
        }

            .page-content .title:first-child {
                margin-top: 0;
            }

        .page-content p {
            font-size: 18px;
            margin-bottom: 20px;
        }
}

.input-helper {
    display: none;
    margin: 10px 0;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

    .input-helper p {
        font-size: 14px;
        color: #888;
        margin-bottom: 10px;
    }

    .input-helper img {
        max-width: 100%;
        cursor: pointer;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

.form-h-separator {
    height: 100%;
    max-height: 90px;
}

    .form-h-separator p {
        color: #484848;
        text-align: center;
    }

/* Message Modal */
.message-modal-content {
    text-align: center;
}

    .message-modal-content p {
        margin-bottom: 20px;
    }

        .message-modal-content p b {
            color: #eb1c74;
        }

@media screen and (min-width: 768px) {
    .message-modal-content p {
        font-size: 18px;
    }
}

/* Helpers */
@media screen and (min-width: 768px) {
    .padding-0-md {
        padding: 0 !important;
    }
}

.boxed-title {
    background: #0a2f57;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    margin-bottom: 10px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

/* Panel Menu */
.product-menu a {
    display: block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background-color: #1f2346;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    box-shadow: 0px 5px 16px 0px rgba(9, 47, 87, 0.5);
    margin-bottom: 20px;
}

    .product-menu a:hover {
        background-color: #eb1c74;
        box-shadow: 0px 5px 16px 0px rgba(247, 22, 139, 0.5);
    }

/* Swiper Settings */
.swiper-container {
    width: 100%;
    height: 100%;
}

    .swiper-container .swiper-pagination-bullets {
        position: relative;
        margin-top: 40px;
        width: 100%;
    }

@media (max-width: 768px) {
    .swiper-container .swiper-pagination-bullets {
        display: none;
    }
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #94d60a;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    cursor: pointer;
    -webkit-transition: opacity 300ms, visibility 300ms;
    transition: opacity 300ms, visibility 300ms;
}

    .slide-arrow i {
        font-size: 30px;
        color: rgba(0, 0, 0, 0.1);
        -webkit-transition: color 300ms;
        transition: color 300ms;
        vertical-align: middle;
    }

    .slide-arrow:hover i {
        color: #1f2346;
    }

.slide-arrow-left {
    left: 0;
}

.slide-arrow-right {
    right: 0;
}

.swiper-container:hover .slide-arrow {
    visibility: visible;
    opacity: 1;
}

.swiper-button-disabled {
    display: none;
}

.faq-link-list a {
    display: block;
    margin-bottom: 10px;
}

    .faq-link-list a:last-child {
        margin-bottom: 0;
    }

.modal-uavt .steps-navigation {
    height: 72px;
    margin-bottom: 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

.modal-uavt .step-link {
    display: block;
    cursor: pointer;
    background-color: #f4f4f4;
    text-align: center;
    border: solid white;
    border-width: 0 1px;
}

    .modal-uavt .step-link .step-link__circle {
        display: block;
        width: 30px;
        height: 30px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        margin: auto;
        background-color: #fff;
        color: #1f2346;
    }

    .modal-uavt .step-link .step-link__number {
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 24px;
    }

    .modal-uavt .step-link .step-link__icon {
        display: none;
    }

        .modal-uavt .step-link .step-link__icon i {
            line-height: 30px;
        }

    .modal-uavt .step-link .step-link__title {
        display: block;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
        color: #1f2346;
    }

    .modal-uavt .step-link:first-child {
        border-left: none;
    }

    .modal-uavt .step-link:last-child {
        border-right: none;
    }

    .modal-uavt .step-link:hover {
        background-color: #dfdfdf;
    }

    .modal-uavt .step-link.success .step-link__circle {
        background-color: #94d60a;
        color: #fff;
    }

    .modal-uavt .step-link.success .step-link__number {
        display: none;
    }

    .modal-uavt .step-link.success .step-link__icon {
        display: block;
    }

    .modal-uavt .step-link.active .step-link__circle {
        background-color: #eb1c74;
        color: #fff;
    }

.modal-uavt .step-link--mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .modal-uavt .step-content {
        padding: 20px 0;
    }

    .modal-uavt .steps-navigation {
        display: none;
    }

    .modal-uavt .step-link--mobile {
        border: none;
        display: block !important;
        height: 60px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        margin-bottom: 20px;
    }

        .modal-uavt .step-link--mobile .step-link__circle-container {
            width: 70px;
        }

        .modal-uavt .step-link--mobile .step-link__title {
            text-align: left;
        }

        .modal-uavt .step-link--mobile.active {
            margin-bottom: 0;
        }
}

.modal-uavt {
    max-width: 900px;
}

    .modal-uavt p {
        margin-bottom: 20px;
    }

hr.modal-divider {
    border: 0;
    height: 1px;
    background: #e4e4e4;
    background-image: linear-gradient(to right, #fff, #e4e4e4, #fff);
    margin: 30px 0;
}

.modal-sub-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content {
    display: none;
}

.step-content-cumulative {
    display: none;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: text-top;
    border-radius: 0.25rem;
}

.badge-primary {
    color: #fff;
    background-color: #eb1c74;
}

/* List */
.list {
    padding-left: 20px;
}

    .list li {
        margin-bottom: 10px;
    }

.list--bullet {
    list-style-type: disc;
}

.list--ordered li::marker {
    font-weight: 500;
}

.list--quick-icon {
    list-style-type: none;
    margin-bottom: 0;
}

    .list--quick-icon li {
        display: flex;
    }

        .list--quick-icon li::before {
            flex: 0 0 11px;
            content: "";
            display: block;
            background-size: 11px 20px;
            width: 11px;
            height: 20px;
            list-style-type: none;
            background-image: url(/Content/images/quick-icon.svg);
            margin: 4.5px 15px 0 0;
        }

.selector-icon {
    display: block;
    cursor: pointer;
    margin-left: 20px;
}

    .selector-icon .selector-icon-button {
        display: flex;
        color: #eb1c74;
        align-items: center;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

        .selector-icon .selector-icon-button .selector-icon-button__indicator {
            width: 24px;
            height: 24px;
            background-color: #fff;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;
            border-radius: 4px;
            margin-right: 10px;
            position: relative;
            border: 1px solid #ccc;
        }

        .selector-icon .selector-icon-button .selector-icon-button__text {
            font-size: 20px;
            font-weight: 700;
        }

    .selector-icon input:checked + .selector-icon-button .selector-icon-button__indicator:after {
        display: block;
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        background-color: #94d60a;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        top: 5px;
        left: 5px;
    }

.form-checkbox label a {
    font-weight: 600;
    color: #eb1c74;
}

    .form-checkbox label a:hover {
        color: #1f2346;
    }

.form-checkbox.form-checkbox--small {
    font-size: 0.75rem;
}

.form-checkbox.form-checkbox--dark a {
    color: #000;
    font-weight: 600;
}

.text-table {
    width: 100%;
    font-size: 14px;
    border-spacing: 1px;
    border-collapse: separate;
}

    .text-table thead tr th {
        text-align: left;
        font-weight: 600;
        text-transform: uppercase;
        color: #2e2e2e;
        border-bottom: 1px solid #e4e4e4;
        padding: 2px 0;
    }

    .text-table tbody tr td {
        padding: 3px 0;
        border-bottom: 1px solid #e4e4e4;
        font-family: "Open Sans", sans-serif;
    }

    .text-table tbody tr:last-child td {
        border: none;
    }

.query-result {
    display: flex;
    margin-top: 10px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.query-result-block {
    flex: 1;
    padding: 10px 12px;
    font-size: 14px;
    background-color: #f6f6f6;
    border: 1px solid #f6f6f6;
}

.query-result-button {
    width: 80px;
    text-align: center;
    background-color: #a1a1a1;
    font-size: 14px;
    color: #fff;
}

    .query-result-button:hover {
        background-color: #969696;
    }

/* Helpers */
.stack {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.stack-column {
    display: table-cell;
    width: 100%;
    height: 100%;
}

.stack--middle .stack-column {
    vertical-align: middle;
}

.height-100 {
    height: 100%;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-15 {
    margin-top: 15px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-t-60 {
    margin-top: 60px;
}

.m-b-0 {
    margin-bottom: 0;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-60 {
    margin-bottom: 60px;
}

.m-l-15 {
    margin-left: 15px;
}

.m-r-15 {
    margin-right: 15px;
}

.visible-desktop {
    display: none;
}

.address-code-box {
    background-color: #94d60a;
    color: #fff;
    font-size: 28px !important;
    font-weight: 700;
    padding: 10px 20px;
    font-family: "Open Sans", sans-serif;
}

.copy-button {
    padding: 0.4rem;
    position: absolute;
    right: 10%;
    top: 44%;
    border: 2px solid #fff;
    border-radius: 3px;
    color: #fff;
    transform: translateY(-50%);
    font-weight: 700;
}

    .copy-button:hover {
        background-color: #fff;
        color: #94d60a;
        cursor: pointer;
    }

    .copy-button i {
        font-size: 16px;
        margin-right: 4px;
    }

@media screen and (min-width: 480px) {
    .visible-xs {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .visible-mobile {
        display: none;
    }

    .visible-desktop {
        display: block;
    }
}

@media screen and (max-width: 992px) {
    .m-t-10-xs {
        margin-top: 10px;
    }

    .m-t-20-xs {
        margin-top: 20px;
    }
}

@media screen and (min-width: 992px) {
    .m-t-10-xs {
        margin-top: 0;
    }

    .m-t-lg-0 {
        margin-top: 0;
    }
}

/* Circle Badge */
.circle-badge {
    display: block;
    height: 24px;
    width: 24px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    background-color: #eb1c74;
    text-align: center;
    line-height: 24px;
}

@media screen and (min-width: 992px) {
    .circle-badge {
        font-size: 18px;
        height: 42px;
        width: 42px;
        line-height: 42px;
    }
}

.ar-16-9 {
    position: relative;
}

    .ar-16-9:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 56.25%;
    }

    .ar-16-9 > .ratio-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .ar-16-9 .ar-video {
        width: 100%;
        height: 100%;
    }

.image-list .image-list-item {
    display: inline-block;
    width: 140px;
    margin-left: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

    .image-list .image-list-item:first-child {
        margin-left: 0;
    }

    .image-list .image-list-item:hover {
        transform: translateY(-4px);
    }

@media screen and (min-width: 992px) {
    .image-list .image-list-item {
        width: 200px;
    }
}

.line-through {
    text-decoration: line-through;
}

.back-to-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.modal-header.modal-header--primary {
    background-color: #eb1c74;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    .modal-header.modal-header--primary .modal-title {
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 400;
    }

.search-select-clear {
    position: absolute;
    margin-top: 4px;
    right: 30px;
    color: #bebebe;
}

    .search-select-clear:hover {
        color: #e83636;
    }

    .search-select-clear i {
        font-size: 14px;
    }

.table-small {
    line-height: 1;
    font-size: 14px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

    .table-small tr td {
        padding: 10px;
        border: 1px solid #dfdfdf;
    }

.list--large li {
    font-weight: 600;
    color: #1f2346;
    margin-bottom: 1.2rem;
}

    .list--large li:last-child {
        margin-bottom: 0;
    }

    .list--large li span {
        color: #eb1c74;
        margin-right: 0.8rem;
    }

.uavt-card {
    background: #f4f4f4;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    padding: 16px;
}

.uavt-result {
    margin-top: 30px;
}

    .uavt-result .dataTables_wrapper.container-fluid.dt-bootstrap4.no-footer .row:first-child {
        background-color: #e9e9e9 !important;
        width: 100%;
        padding-top: 18px;
        margin: 0;
        border: 1px solid #dfdfdf;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .uavt-result .dataTables_wrapper {
        padding: 0;
    }

        .uavt-result .dataTables_wrapper.container-fluid {
            padding: 0;
            margin: 0;
        }

    .uavt-result th {
        border-radius: 0% !important;
    }

.addresscode-result {
    margin-top: 30px;
}

    .addresscode-result .dataTables_wrapper.container-fluid.dt-bootstrap4.no-footer .row:first-child {
        background-color: #e9e9e9 !important;
        width: 100%;
        padding-top: 18px;
        margin: 0;
        border: 1px solid #dfdfdf;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .addresscode-result .dataTables_wrapper {
        padding: 0;
    }

        .addresscode-result .dataTables_wrapper.container-fluid {
            padding: 0;
            margin: 0;
        }

    .addresscode-result table {
        margin-top: 0px !important;
    }

    .addresscode-result th {
        border-radius: 0% !important;
    }

/*  Image BG */
.image-bg {
    height: auto;
    position: relative;
}

    .image-bg .container {
        height: 100%;
        position: relative;
    }

.badge-image img {
    display: none;
    width: 96px;
    margin: 0 auto;
}

.tss-character {
    display: none;
}

@media screen and (min-width: 768px) {
    .badge-image {
        display: flex;
        position: absolute;
        top: 0;
        right: 2rem;
    }

        .badge-image img {
            display: block;
            width: 224px;
        }

    .tss-character {
        display: flex;
    }
}

.image-bg--renewal {
    background: url(/Content/images/landing/renew.jpg) no-repeat center;
    background-size: cover;
}

.image-bg--zeyil {
    background: url(/Content/images/landing/quick-policy-change.jpg) no-repeat center;
    background-size: cover;
}

.image-bg--reminder {
    background: url(/Content/images/landing/reminder.jpg) no-repeat center;
    background-size: cover;
}

.image-bg--find-agency {
    background: url(/Content/images/landing/find-agency.jpg) no-repeat center;
    background-size: cover;
}

.landing-yesilkart {
    background: url(/Content/images/landing/yesil-kart-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-adreskodu {
    background: url(/Content/images/landing/adreskodu-sorgulama.jpg) no-repeat center;
    background-size: cover;
}

.image-bg-container {
    padding: 30px 0;
    height: 100%;
    position: relative;
}

.image-bg-title {
    color: #fff;
}

    .image-bg-title .title {
        font-size: 26px;
        line-height: 1.15;
    }

        .image-bg-title .title .title-1 {
            color: inherit;
        }

        .image-bg-title .title .title-2 {
            color: inherit;
        }

    .image-bg-title .sub-title {
        font-size: 26px;
        line-height: 1.15;
        color: #fff;
    }

    .image-bg-title p {
        font-size: 16px;
        line-height: 1.4;
        margin-top: 10px;
        max-width: 540px;
    }

.image-bg-features {
    margin-top: 20px;
}

.image-bg-form {
    margin-top: 20px;
}

    .image-bg-form .panel {
        width: 100%;
    }

.image-bg-columns .landing-action-buttons {
    position: relative;
    padding-bottom: 0;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .image-bg-container {
        padding: 60px 0;
    }

    .image-bg-title .title {
        font-size: 36px;
    }

    .image-bg-title p {
        font-size: 18px;
        margin-top: 20px;
    }
}

@media screen and (min-width: 992px) {
    .image-bg {
        min-height: 540px;
    }

    .image-bg-small {
        min-height: 440px;
    }

    .image-bg-title .title {
        font-size: 48px;
    }

    .image-bg-columns {
        display: flex;
        height: 100%;
    }

        .image-bg-columns .image-bg-information {
            flex: 1 0;
            position: relative;
        }

            .image-bg-columns .image-bg-information .image-bg-features {
                margin-top: 50px;
            }

        .image-bg-columns .image-bg-form {
            margin-top: 0;
            display: flex;
            align-items: center;
            flex: 0 0 380px;
            max-width: 380px;
        }

    .page-content-container {
        max-width: calc(100% - 380px);
    }

    .page-content-container--center {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Landing Pages */
.landing {
    min-height: 600px;
}

    .landing .container {
        height: 100%;
    }

.bg-cover-image-container {
    position: relative;
}

    .bg-cover-image-container.no-object-fit {
        background-size: cover;
        background-position: center center;
    }

        .bg-cover-image-container.no-object-fit .bg-cover-image {
            display: none;
        }

.bg-cover-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.landing-product {
    padding: 60px 0 30px 0;
    height: 100%;
    max-width: calc(100% - 380px);
    position: relative;
    z-index: 20;
}

.landing-home {
    background: url(/Content/images/landing/quick-sigorta.jpg) no-repeat center;
    background-size: cover;
}

.landing-kasko {
    background: url(/Content/images/landing/quick-kasko-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-motosiklet {
    background: url(/Content/images/landing/quick-motosiklet-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-dask {
    background: url(/Content/images/landing/quick-dask-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-ferdikaza {
    background: url(/Content/images/landing/quick-ferdikaza-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-hekim {
    background: url(/Content/images/landing/quick-hekim-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-konut {
    background: url(/Content/images/landing/quick-konut-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-seyahat {
    background: url(/Content/images/landing/quick-seyahat-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-seyahat-incoming {
    background: url(/Content/images/landing/quick-seyahat-incoming-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-trafik {
    background: url(/Content/images/landing/quick-trafik-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-ekstrem {
    background: url(/Content/images/landing/quick-ekstrem.jpg) no-repeat center;
    background-size: cover;
}

.landing-ferdikaza-dalis {
    background: url(/Content/images/landing/quick-ekstrem-dalis.jpg) no-repeat center;
    background-size: cover;
}

.landing-ferdikaza-kayak {
    background: url(/Content/images/landing/quick-ekstrem-kayak.jpg) no-repeat center;
    background-size: cover;
}

.landing-ferdikaza-dagcilik {
    background: url(/Content/images/landing/quick-ekstrem-dagcilik.jpg) no-repeat center;
    background-size: cover;
}

.landing-ferdikaza-yelken {
    background: url(/Content/images/landing/quick-ekstrem-yelken.jpg) no-repeat center;
    background-size: cover;
}

.landing-ekstrem-xxl {
    background: url(/Content/images/landing/quick-ekstrem-xxl.jpg) no-repeat center;
    background-size: cover;
}

.landing-kasko-deger {
    background: url(/Content/images/landing/kasko-deger.jpg) no-repeat center;
    background-size: cover;
}

.landing-kefalet-senedi {
    background: url(/Content/images/landing/quick-kefalet-senedi.jpg) no-repeat center;
    background-size: cover;
}

.landing-kusur-durumuna-itiraz {
    background: url(/Content/images/landing/kusur-durumuna-itiraz.jpg) no-repeat center;
    background-size: cover;
}

.landing-alacak-sigortasi {
    background: url(/Content/images/landing/quick-alacak-sigortasi.jpg) no-repeat center;
    background-size: cover;
}

.landing-seyahat-yurtici {
    background: url(/Content/images/landing/quick-yurtici-seyahat.jpg) no-repeat center;
    background-size: cover;
}

.landing-mtv {
    background: url(/Content/images/landing/kasko-deger.jpg) no-repeat center;
    background-size: cover;
}

.product-information {
    position: relative;
    color: #fff;
}

    .product-information .title {
        font-size: 48px;
        line-height: 1.15;
    }

        .product-information .title .title-1 {
            color: inherit;
        }

        .product-information .title .title-2 {
            color: inherit;
        }

    .product-information p {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 20px;
        max-width: 540px;
    }

    .product-information.product-information--dark {
        color: #1f2346;
    }

.landing-tag {
    font-size: 16px;
    color: #ffffff;
    background-color: #eb1c74;
    padding: 8px 20px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 20px;
}

.landing-tag--secondary {
    color: #1f2346;
    background-color: #94d60a;
    font-weight: 700;
}

.product-features {
    margin-top: 40px;
}

.feature-bar {
    margin-bottom: 30px;
    max-width: 540px;
    background: #eb1c74;
    position: relative;
    color: #fff;
    height: 72px;
    margin-right: 30px;
}

    .feature-bar:before {
        display: block;
        content: "";
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        width: 1000%;
        height: 100%;
        background: #eb1c74;
        box-shadow: 0px 5px 16px 0px rgba(247, 22, 139, 0.5);
    }

.feature-bar-arrow {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
}

    .feature-bar-arrow:before {
        display: block;
        content: "";
        left: 0;
        top: 24px;
        position: absolute;
        width: 16px;
        height: 24px;
        background: #eb1c74;
    }

    .feature-bar-arrow i {
        font-size: 72px;
        color: #eb1c74;
        margin-left: -25px;
    }

.feature-bar-arrows {
    width: 72px;
}

    .feature-bar-arrows .arrow-right {
        display: block;
        float: left;
        font-size: 32px;
        width: 24px;
        text-align: left;
    }

    .feature-bar-arrows .arrow-down {
        display: none;
    }

.feature-bar-inner {
    position: relative;
    z-index: 2;
    display: table;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 10px 0;
    padding-right: 20px;
}

.feature-bar-icon,
.feature-bar-content,
.feature-bar-arrows {
    display: table-cell;
    vertical-align: middle;
}

.feature-bar-icon {
    width: 56px;
    padding-right: 20px;
}

    .feature-bar-icon i {
        display: block;
        font-size: 36px;
    }

.feature-bar-content {
    line-height: 1.15;
}

.feature-bar-title {
    font-size: 22px;
    font-weight: 800;
}

.feature-bar-text {
    font-size: 22px;
    font-weight: 500;
}

    .feature-bar-text em {
        font-family: "Open Sans", sans-serif;
        font-style: normal;
        font-weight: 700;
    }

.feature {
    float: left;
    width: 50%;
    display: table;
    table-layout: fixed;
    color: #fff;
    margin-bottom: 36px;
}

    .feature .feature-icon {
        display: table-cell;
        width: 60px;
        padding-right: 20px;
        vertical-align: middle;
    }

        .feature .feature-icon i {
            display: block;
            font-size: 40px;
        }

    .feature .feature-content {
        display: table-cell;
        vertical-align: middle;
        line-height: 1.2;
    }

        .feature .feature-content .feature-title {
            font-size: 18px;
            font-weight: 700;
        }

        .feature .feature-content .feature-description {
            font-size: 14px;
            font-weight: 500;
            margin-top: 6px;
        }

    .feature .feature-content-alt {
        display: table-cell;
        vertical-align: middle;
        line-height: 1.2;
    }

        .feature .feature-content-alt .feature-title {
            font-size: 24px;
            font-weight: 700;
            font-family: "Open Sans", sans-serif;
        }

        .feature .feature-content-alt .feature-description {
            font-size: 16px;
            font-weight: 600;
            margin-top: 6px;
        }

.product-features.product-features-3-column .feature {
    width: 30%;
}

    .product-features.product-features-3-column .feature .feature-icon {
        display: table-cell;
        width: 60px;
        padding-right: 20px;
        vertical-align: middle;
    }

        .product-features.product-features-3-column .feature .feature-icon i {
            display: block;
            font-size: 40px;
        }

.insurance-hero-proposal .panel,
.landing-proposal .panel,
.image-bg-form .panel {
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

.insurance-hero-proposal .table,
.landing-proposal .table,
.image-bg-form .table {
    margin-bottom: 20px;
}

.insurance-hero-proposal .form-label,
.landing-proposal .form-label,
.image-bg-form .form-label {
    font-size: 14px;
}

.insurance-hero-proposal .form-checkbox,
.landing-proposal .form-checkbox,
.image-bg-form .form-checkbox {
    margin-bottom: 10px;
}

    .insurance-hero-proposal .form-checkbox label,
    .landing-proposal .form-checkbox label,
    .image-bg-form .form-checkbox label {
        color: #121212;
        font-size: 12px;
        font-weight: 500;
        color: #6e6e6e;
        line-height: 1.2;
    }

        .insurance-hero-proposal .form-checkbox label a,
        .landing-proposal .form-checkbox label a,
        .image-bg-form .form-checkbox label a {
            font-weight: 600;
            color: #3a3a3a;
        }

            .insurance-hero-proposal .form-checkbox label a:hover,
            .landing-proposal .form-checkbox label a:hover,
            .image-bg-form .form-checkbox label a:hover {
                color: #eb1c74;
            }

.insurance-hero-proposal .qs-btn,
.landing-proposal .qs-btn,
.image-bg-form .qs-btn {
    margin-bottom: 20px;
}

.insurance-hero-proposal .installment-link,
.landing-proposal .installment-link,
.image-bg-form .installment-link {
    display: block;
    cursor: pointer;
    text-align: center;
    color: #eb1c74;
}

    .insurance-hero-proposal .installment-link i,
    .landing-proposal .installment-link i,
    .image-bg-form .installment-link i {
        font-size: 18px;
        margin-right: 5px;
    }

    .insurance-hero-proposal .installment-link .text,
    .landing-proposal .installment-link .text,
    .image-bg-form .installment-link .text {
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        font-weight: 600;
    }

.landing-sticky-container {
    position: relative;
}

.landing-sticky-sidebar {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.landing-proposal {
    margin-left: auto;
    width: 350px;
    z-index: 90;
    will-change: min-height;
}

    .landing-proposal .inner-wrapper-sticky {
        position: relative;
        z-index: 90;
        transform: translate(0, 0);
        /* For browsers don't support translate3d. */
        transform: translate3d(0, 0, 0);
        will-change: position, transform;
    }

.landing-content {
    background: #fbfbfb;
    padding: 0 0 50px 0;
    position: relative;
}

.landing-content-container,
.page-content-container {
    padding-top: 50px;
    max-width: calc(100% - 380px);
    color: #121212;
}

    .landing-content-container .title,
    .page-content-container .title {
        margin: 30px 0;
    }

        .landing-content-container .title:first-child,
        .page-content-container .title:first-child {
            margin-top: 0;
        }

    .landing-content-container .sub-title:first-child,
    .page-content-container .sub-title:first-child {
        margin-top: 0;
    }

    .landing-content-container p,
    .page-content-container p {
        font-size: 18px;
        margin-bottom: 20px;
    }

        .landing-content-container p:last-child,
        .page-content-container p:last-child {
            margin-bottom: 0;
        }

        .landing-content-container p.landing-footnote,
        .page-content-container p.landing-footnote {
            font-size: 1rem;
        }

    .landing-content-container .table,
    .page-content-container .table {
        margin: 30px 0;
    }

    .landing-content-container .featured-text,
    .page-content-container .featured-text {
        font-size: 16px;
        font-weight: 400;
        color: #020202;
        margin: 50px 0;
    }

        .landing-content-container .featured-text b,
        .page-content-container .featured-text b {
            color: #eb1c74;
        }

    .landing-content-container .accordion,
    .page-content-container .accordion {
        margin-bottom: 30px;
    }

    .landing-content-container .list,
    .page-content-container .list {
        font-size: 18px;
    }

.max-width-full {
    max-width: 100%;
}

.landing-action {
    display: none;
}

.calculation-price .calculation-price_title {
    font-weight: 500;
    font-size: 22px;
}

.calculation-price .calculation-price_amount {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #eb1c74;
    margin-bottom: 20px;
}

.calculation-price .calculation-price_total_mtv {
    background-color: #eb1c74;
    padding: 10px;
}

    .calculation-price .calculation-price_total_mtv .calculation-price_title_mtv {
        color: #fff;
        font-weight: 700;
        font-size: 18px;
    }

    .calculation-price .calculation-price_total_mtv .calculation-price_amount_mtv {
        float: right;
        color: #fff;
        font-weight: 700;
        font-size: 18px;
    }

.calculation-price .calculation-price_mtv {
    background-color: #fff;
    padding: 10px;
}

    .calculation-price .calculation-price_mtv .calculation-price_title_mtv {
        font-weight: 500;
        font-size: 16px;
    }

    .calculation-price .calculation-price_mtv .calculation-price_amount_mtv {
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
        float: right;
        font-size: 16px;
        color: #eb1c74;
    }

.calculation-price .calculation-note_mtv {
    font-size: 12px;
    margin-bottom: 10px;
}

.landing-source-item {
    width: 90%;
    margin: 0 5%;
}

    .landing-source-item .landing-source-video {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }

        .landing-source-item .landing-source-video iframe {
            height: 100%;
            width: 100%;
        }

        .landing-source-item .landing-source-video:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 56.25%;
        }

        .landing-source-item .landing-source-video > .ratio-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

@media screen and (max-width: 992px) {
    .landing-sticky-container {
        display: flex;
        flex-direction: column;
    }

        .landing-sticky-container .landing {
            order: 1;
        }

        .landing-sticky-container .landing-sticky-sidebar {
            order: 2;
            position: relative;
        }

        .landing-sticky-container .landing-content {
            order: 3;
        }

    .landing-proposal {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 30px auto;
        height: auto !important;
    }

    .landing-product {
        max-width: 100%;
    }

    .product-information p {
        max-width: 100%;
    }

    .landing-content-container,
    .page-content-container {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .feature-bar {
        max-width: 100%;
        margin: 0;
    }

        .feature-bar:before {
            right: -450%;
        }

    .feature-bar-arrow {
        display: none;
    }

    .feature-bar-arrows {
        width: 32px;
    }

        .feature-bar-arrows .arrow-right {
            display: none;
        }

        .feature-bar-arrows .arrow-down {
            display: block;
            font-size: 32px;
        }

    .landing-tag {
        font-size: 12px;
        padding: 6px 20px;
        border-radius: 16px;
    }

    .landing-source-item {
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 992px) {
    .landing {
        min-height: 480px;
    }
}

@media screen and (max-width: 576px) {
    .landing {
        min-height: 280px;
    }

    .landing-product {
        padding: 20px 0;
    }

    .product-information .title {
        font-size: 24px;
    }

    .product-information p {
        font-size: 14px;
        margin-top: 10px;
        max-width: 100%;
    }

    .feature {
        width: 25%;
        margin-bottom: 20px;
    }

        .feature .feature-icon {
            display: block;
            width: 20px;
            margin: 0 auto 6px auto;
            padding-right: 0;
        }

            .feature .feature-icon i {
                font-size: 20px;
            }

        .feature .feature-content {
            display: block;
            text-align: center;
        }

            .feature .feature-content .feature-title {
                font-size: 12px;
            }

            .feature .feature-content .feature-description {
                display: none;
            }

        .feature .feature-content-alt {
            display: block;
            text-align: center;
        }

            .feature .feature-content-alt .feature-title {
                font-size: 18px;
            }

            .feature .feature-content-alt .feature-description {
                display: none;
            }

    .landing-proposal {
        display: block;
        width: 100%;
        margin: 20px auto;
    }

        .landing-proposal .panel {
            padding: 15px 10px;
            box-shadow: none;
            background: #fff;
        }

        .landing-proposal .panel-title {
            font-size: 16px;
        }

        .landing-proposal .panel--tabbed {
            padding: 0;
        }

            .landing-proposal .panel--tabbed .panel-content {
                padding: 15px;
            }

    .landing-content {
        padding-bottom: 30px;
    }

    .landing-content-container,
    .page-content-container {
        padding-top: 30px;
    }

        .landing-content-container .title,
        .page-content-container .title {
            margin: 15px 0;
            font-size: 20px;
        }

        .landing-content-container p,
        .page-content-container p {
            font-size: 14px;
            margin-bottom: 10px;
        }

            .landing-content-container p:last-child,
            .page-content-container p:last-child {
                margin-bottom: 0;
            }

        .landing-content-container .table,
        .page-content-container .table {
            margin: 30px 0;
        }

        .landing-content-container .featured-text,
        .page-content-container .featured-text {
            font-size: 16px;
            margin: 30px 0;
        }

        .landing-content-container .accordion,
        .page-content-container .accordion {
            margin-bottom: 15px;
        }

        .landing-content-container .list,
        .page-content-container .list {
            font-size: 14px;
        }

    .landing-action {
        display: block;
        margin-top: 20px;
    }

    .feature-bar {
        height: 48px;
    }

    .feature-bar-arrows {
        width: 18px;
    }

        .feature-bar-arrows .arrow-down {
            font-size: 18px;
        }

    .feature-bar-icon {
        width: 30px;
        padding-right: 10px;
    }

        .feature-bar-icon i {
            font-size: 20px;
        }

    .feature-bar-title {
        font-size: 13px;
    }

    .feature-bar-text {
        font-size: 11px;
    }
}

.landing-proposal--height-100 .panel {
    height: 100%;
    padding-right: 10px;
}

    .landing-proposal--height-100 .panel .scroll-container {
        height: 100%;
        overflow: auto;
        padding-right: 20px;
    }

.extreme-links {
    display: flex;
    margin: -5px;
    flex-wrap: wrap;
}

    .extreme-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 5px;
        width: 30%;
        font-size: 14px;
    }

@media screen and (min-width: 480px) {
    .extreme-links {
        flex-wrap: nowrap;
    }

        .extreme-links a {
            width: 100%;
        }
}

.related-loader {
    height: 240px;
}

    .related-loader .loader {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

        .related-loader .loader i {
            color: #dadada;
            font-size: 36px;
            transform-origin: 50% 50% 0;
            -webkit-animation: rotateY 1s infinite linear;
            animation: rotateY 1s infinite linear;
        }

.related-content {
    display: none;
}

.related-section {
    margin-top: 30px;
}

.related-posts {
    transition: opacity 400ms;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .related-posts .related-post-column {
        float: left;
        padding: 0 15px;
        width: 50%;
    }

        .related-posts .related-post-column:last-child {
            display: none;
        }

    .related-posts .related-post-item {
        max-width: 320px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .related-posts .related-post-item > a {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 40;
        }

        .related-posts .related-post-item figure {
            box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            height: auto;
            z-index: 10;
            position: relative;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
            border-radius: 3px;
        }

            .related-posts .related-post-item figure:before {
                display: block;
                content: "";
                width: 100%;
                padding-top: 56.25%;
            }

            .related-posts .related-post-item figure > .ratio-content {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            .related-posts .related-post-item figure img {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }

        .related-posts .related-post-item header {
            padding-top: 10px;
            color: #fff;
        }

            .related-posts .related-post-item header .btn {
                margin-top: 20px;
                text-transform: none;
            }

    .related-posts .related-post-item-title {
        font-size: 14px;
        font-weight: 500;
    }

        .related-posts .related-post-item-title a,
        .related-posts .related-post-item-title a:visited {
            color: rgba(0, 0, 0, 0.9);
        }

            .related-posts .related-post-item-title a:hover,
            .related-posts .related-post-item-title a:visited:hover {
                color: black;
            }

    .related-posts .related-post-description {
        margin-top: 10px;
        color: rgba(0, 0, 0, 0.9);
    }

@media screen and (min-width: 768px) {
    .related-posts .related-post-column {
        width: 33%;
    }

        .related-posts .related-post-column:last-child {
            display: block;
        }

    .related-posts .related-post-item-title {
        font-size: 18px;
    }
}

.perks-grid {
    margin-top: 60px;
}

.perks-card {
    margin-bottom: 20px;
    padding: 20px 30px;
    background: white;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.perks-card-title {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

.perks-card-desc {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    margin: 0 !important;
}

.perks-card-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 20px auto;
}

.perks-card-image {
    display: block;
    width: 64px;
    height: 64px;
    margin: 10px auto;
}

@media (min-width: 768px) {
    .perks-grid {
        display: flex;
    }

    .perks-card-icon {
        width: 72px;
        height: 72px;
        margin: 30px auto;
    }

    .perks-card-image {
        width: 120px;
        height: 120px;
        margin: 30px auto;
    }
}

.landing-features {
    margin-bottom: 0;
}

    .landing-features p {
        font-size: 18px;
    }

    .landing-features .col-lg-6 {
        margin-bottom: 20px;
    }

.landing-box {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

    .landing-box .landing-box-title-trafic {
        padding-bottom: 20px;
    }

.landing-box-hero {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #1f2346;
    color: #fff;
}

.landing-box-column {
    flex: 1;
    padding: 18px 24px;
}

.landing-box-icon-center i {
    font-size: 72px;
}

    .landing-box-icon-center i:before {
        background: #d93974;
        background: -webkit-linear-gradient(0deg, #d93974 0, #9557f1 100%);
        background: linear-gradient(0deg, #d93974 0%, #9557f1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
    }

.play-icon .play-icon-text {
    color: #1f2346;
    font-weight: 700;
    margin-left: 10px;
    transition: all 200ms;
}

    .play-icon .play-icon-text:hover {
        color: #eb1c74;
    }

.landing-box-icon-container {
    display: block;
    position: relative;
    z-index: 1;
}

    .landing-box-icon-container .circle-badge {
        position: absolute;
        top: -8px;
        left: -16px;
        z-index: 1;
    }

.landing-box-column-nowrap {
    white-space: nowrap;
}

.landing-box-title {
    line-height: 1.2;
    color: #1f2346;
    font-size: 20px;
    font-weight: 600;
}

    .landing-box-title.landing-box-title--spaced {
        margin-bottom: 10px;
    }

.landing-box-subtitle {
    color: #eb1c74;
    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans";
}

.landing-box-text {
    color: #010101;
    font-family: Raleway;
    font-size: 21px;
}

.landing-box-column-icon {
    flex: 0 0 96px;
    white-space: nowrap;
}

.landing-box-icon:before {
    font-size: 48px;
    background: #d93974;
    background: -webkit-linear-gradient(0deg, #d93974 0, #9557f1 100%);
    background: linear-gradient(0deg, #d93974 0%, #9557f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.landing-features--small .landing-box-title {
    font-size: 21px;
}

.landing-action-buttons {
    display: flex;
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    z-index: 20;
}

    .landing-action-buttons .qs-btn {
        margin-left: 8px;
    }

        .landing-action-buttons .qs-btn:first-child {
            margin-left: 0;
        }

@media screen and (min-width: 992px) {
    .landing-action-buttons {
        margin-top: 30px;
    }

        .landing-action-buttons .qs-btn {
            margin-left: 24px;
        }

    .landing-box-title.landing-box-title--spaced {
        margin-bottom: 20px;
    }

    .image-bg .landing-action-buttons {
        position: relative;
        padding-bottom: 0;
        margin-top: 30px;
    }
}

@media screen and (min-width: 992px) {
    .landing-box-column {
        padding: 36px;
    }

        .landing-box-column.landing-box-column-image {
            padding: 0;
        }

    .landing-box-column-icon {
        flex: 0 0 168px;
    }

    .landing-box-column--text {
        flex: 3;
    }

    .landing-box-title {
        font-size: 28px;
    }

    .landing-box-subtitle {
        font-size: 21px;
    }

    .landing-box-icon:before {
        font-size: 96px;
    }

    .landing-box-icon-container .circle-badge {
        top: -10px;
        left: -24px;
    }

    .landing-features {
        margin-bottom: 40px;
    }

        .landing-features .col-lg-6 {
            margin-bottom: 0;
        }
}

@media screen and (min-width: 992px) {
    .landing-yurtdisi-seyahat .landing-features {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1200px) {
    .landing-box--big {
        flex-wrap: wrap;
        padding: 36px 0;
    }

        .landing-box--big .landing-box-column {
            padding: 0 36px;
        }

        .landing-box--big .landing-box-column-nowrap {
            order: 1;
        }

        .landing-box--big .landing-box-column--text {
            order: 3;
            flex: 0 0 100%;
            padding-top: 0;
        }

        .landing-box--big .landing-box-column-icon {
            order: 2;
        }

        .landing-box--big .landing-box-icon-container {
            margin-left: auto;
            width: 96px;
        }
}

@media screen and (max-width: 991px) {
    .landing-box--big {
        flex-wrap: wrap;
        padding: 24px 0;
    }

        .landing-box--big .landing-box-column {
            padding: 0 24px;
        }

        .landing-box--big .landing-box-icon-container {
            margin-left: auto;
            width: 48px;
        }

    .landing-action-buttons .qs-btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    .landing-action-buttons--multiline {
        overflow-x: auto;
    }

        .landing-action-buttons--multiline::-webkit-scrollbar {
            display: none;
        }

        .landing-action-buttons--multiline .qs-btn {
            flex-shrink: 0;
        }

    .landing-box-column--text {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.landing-center-button {
    margin: 40px 0;
    text-align: center;
}

.app-images {
    display: flex;
    align-items: center;
}

    .app-images a {
        margin-right: 10px;
    }

        .app-images a:last-child {
            margin-right: 0;
        }

    .app-images img {
        max-height: 40px;
    }

.tusaf-images img {
    max-height: 60px;
}

.landing-bar {
    display: block;
    background-color: #eb1c74;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    padding: 16px 24px;
    margin-top: 30px;
}

    .landing-bar .landing-bar-icon {
        font-size: 48px;
    }

    .landing-bar .landing-bar-column {
        display: flex;
        margin-bottom: 20px;
        align-items: center;
    }

    .landing-bar .landing-bar-content {
        margin: 0 auto 0 20px;
    }

        .landing-bar .landing-bar-content p {
            line-height: 1.2;
            font-size: 18px;
            font-weight: 700;
            font-family: "Raleway", sans-serif;
        }

.landing-bar--dark {
    background-color: #1f2346;
}

@media screen and (min-width: 992px) {
    .landing-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 36px;
    }

        .landing-bar .landing-bar-icon {
            font-size: 60px;
        }

        .landing-bar .landing-bar-column {
            margin-bottom: 0;
        }

        .landing-bar .landing-bar-content {
            margin: 0 auto 0 40px;
        }

            .landing-bar .landing-bar-content p {
                font-size: 21px;
            }
}

@media screen and (max-width: 375px) {
    .landing-bar .app-images img {
        max-width: 100%;
    }
}

.h-tabs {
    display: flex;
    width: 100%;
    text-align: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .h-tabs li {
        flex: 1;
    }

        .h-tabs li a {
            display: block;
            height: 100%;
            background-color: #e4e4e4;
            color: #2e2e2e;
            font-size: 14px;
            padding: 10px;
            border-right: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            text-align: center;
            justify-content: center;
        }

            .h-tabs li a:hover {
                background-color: #888;
                border-color: #888;
                color: #fff;
            }

        .h-tabs li:first-child a {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .h-tabs li:last-child a {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            border-right: none;
        }

        .h-tabs li.active a {
            background-color: #eb1c74;
            color: #fff;
        }

.traffic-modal-video-content {
    margin-top: 10px;
}

    .traffic-modal-video-content .video-modal-title {
        color: #eb1c74;
        font-weight: 600;
        font-size: 20px;
        padding-top: 20px;
    }

    .traffic-modal-video-content p {
        padding-top: 15px;
    }

.traffic-modal-close {
    float: right;
    -webkit-text-stroke: 3px;
    font-size: 18px;
    margin-top: 10px;
    margin-right: 10px;
    color: #fff;
}

/* Special Landing Pages */
.landing-cta {
    margin-top: 2rem;
}

.landing--full .landing-product {
    max-width: 100%;
}

.landing--kaskomotto {
    background-color: #8cc23d;
}

.landing-image {
    max-width: 300px;
}

    .landing-image img {
        display: block;
        width: 100%;
    }

.landing-image-large {
    max-width: 500px;
}

    .landing-image-large img {
        display: block;
        width: 100%;
    }

@media screen and (max-width: 992px) {
    .product-information-container {
        display: flex;
        justify-content: space-between;
    }

    .landing--kaskomotto,
    .landing-kimlik-koruma {
        height: auto;
    }

    .landing-image {
        max-width: 300px;
    }

    .landing-image-large {
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .landing-image {
        max-width: 240px;
    }

    .landing-image-large {
        max-width: 300px;
    }
}

@media screen and (max-width: 576px) {
    .landing-image {
        width: 100px;
    }

    .landing-image-large {
        width: 300px;
    }

    .landing-cta {
        margin-top: 1rem;
        padding: 10px 12px;
        font-size: 14px;
    }
}

.serve-grid {
    margin-top: 30px;
}

.serve-card {
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin-bottom: 20px;
}

    .serve-card.serve-card--auto-height {
        height: auto;
        margin-bottom: 30px;
    }

        .serve-card.serve-card--auto-height:last-child {
            margin-bottom: 0;
        }

.serve-card-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
}

.serve-card-image-title {
    display: block;
    max-height: 38px;
    margin-bottom: 20px;
}

.serve-card-image {
    display: block;
    max-width: 100%;
    max-height: 100px;
    margin: 20px auto 0 auto;
}

.serve-card-desc-container {
    margin-bottom: 20px;
}

    .serve-card-desc-container:last-child {
        margin-bottom: 0;
    }

    .serve-card-desc-container .serve-card-desc {
        text-align: left;
        font-weight: 500;
        font-size: 16px;
        font-family: "Open Sans", sans-serif;
        margin: 0 !important;
    }

        .serve-card-desc-container .serve-card-desc.serve-card-desc--call {
            display: block;
            font-size: 24px;
            color: #484848;
        }

            .serve-card-desc-container .serve-card-desc.serve-card-desc--call:hover {
                color: #eb1c74;
            }

.serve-card-icon {
    display: block;
    max-width: 100%;
    margin: 20px auto 20px auto;
}

.serve-card-mobile-download {
    display: block;
    margin-bottom: 10px;
}

    .serve-card-mobile-download img {
        display: block;
        max-width: 100%;
    }

.serve-card-mobile-image {
    display: block;
}

.perks-card-image {
    display: block;
    width: 64px;
    height: 64px;
    margin: 10px auto;
}

@media (min-width: 768px) {
    .serve-card {
        padding: 40px;
        margin-bottom: 0;
    }

    .serve-card-image-title {
        margin-bottom: 30px;
    }

    .serve-card-image {
        max-height: 196px;
        margin: 60px 0 0 0;
    }

    .serve-card-icon {
        margin: 40px auto 20px 0;
    }

        .serve-card-icon:last-child {
            margin-bottom: 0;
        }
}

@media (min-width: 768px) {
    .perks-grid {
        display: flex;
    }

    .perks-card-icon {
        width: 72px;
        height: 72px;
        margin: 30px auto;
    }

    .perks-card-image {
        width: 120px;
        height: 120px;
        margin: 30px auto;
    }
}

.landing-box-content {
    padding: 20px;
}

.landing-box-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 180px;
}

@media (min-width: 768px) {
    .landing-box-image {
        max-height: 100%;
    }

    .landing-box-content {
        padding: 30px 40px 30px 10px;
    }
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

.badge-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burst-badge {
    background: #eb1c74;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    z-index: 10;
    display: flex;
    align-items: center;
    animation: pulse-black 1s infinite;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

    .burst-badge p {
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        position: relative;
        z-index: 20;
        top: 0;
        margin: 0;
    }

    .burst-badge:before, .burst-badge:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 60px;
        width: 60px;
        background: #eb1c74;
        z-index: 10;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
        border-radius: 6px;
    }

    .burst-badge:before {
        transform: rotate(30deg);
    }

    .burst-badge:after {
        transform: rotate(60deg);
    }

@media (min-width: 768px) {
    .burst-badge {
        width: 96px;
        height: 96px;
    }

        .burst-badge p {
            font-size: 16px;
        }

        .burst-badge:before, .burst-badge:after {
            height: 96px;
            width: 96px;
        }
}

.landing-bar-image {
    display: flex;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    padding: 15px;
}

.landing-bar-image-column-image {
    flex: 0 0 80px;
    margin-right: 15px;
}

    .landing-bar-image-column-image img {
        display: block;
        max-width: 100%;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
    }

.landing-bar-image-column-text {
    font-size: 14px;
}

.landing-bar-title {
    font-size: 16px;
}

.tiyatronet-image {
    width: 280px;
}

.tiyatronet-image-big {
    float: right;
}

.tiyatronet-success-container {
    background-color: #d4edda;
    padding: 20px 0;
    margin-bottom: 40px;
}

    .tiyatronet-success-container i {
        background: #fff !important;
        color: #94d60a !important;
        font-size: 24px !important;
    }

    .tiyatronet-success-container p {
        font-weight: 600;
        font-size: 24px;
    }

@media (min-width: 768px) {
    .tiyatronet-image {
        width: 424px;
    }

    .landing-bar-image {
        padding: 0;
    }

    .landing-bar-image-column-image {
        margin-right: 30px;
    }

    .landing-bar-image-column-image {
        flex: 0 0 160px;
    }

    .landing-bar-image-column-text {
        font-size: 16px;
    }

    .landing-bar-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.howto-landing h3 {
    font-size: 24px;
    margin: 30px 0;
}

.howto-landing p {
    font-size: 18px;
    margin-bottom: 20px;
}

.howto-landing a {
    color: #eb1c74;
    font-weight: 500;
}

.howto-landing ul {
    margin-bottom: 20px;
}

    .howto-landing ul li {
        font-size: 18px;
    }

.howto-landing .howto-guide p {
    font-size: 16px;
}

.howto-landing .howto-image {
    width: 100%;
}

.landing-form-badge-workplace {
    width: 50%;
    margin-left: 25%;
    margin-top: 10px;
}

.footnote-landing {
    font-size: 0.75rem !important;
}

.lead-text-landing {
    font-size: 1.375rem !important;
}

/*  Policy Change */
.policy-change .button-grid {
    margin-top: 20px;
}

.policy-change-amount {
    color: #eb1c74;
}

    .policy-change-amount i {
        font-size: 14px;
    }

a.sfs {
    text-decoration: underline;
    color: #eb1c74;
    display: block;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .policy-change .button-grid {
        display: flex;
        margin: -20px;
        margin-top: 30px;
    }

        .policy-change .button-grid .button-grid-item {
            margin: 20px;
        }
}

.confirmation-success .qs-btn {
    margin-top: 20px;
}

.card {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin-bottom: 30px;
}

    .card .card-header {
        background-color: #1f2346;
        -webkit-border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        -ms-border-radius: 4px 4px 0 0;
        -o-border-radius: 4px 4px 0 0;
        border-radius: 4px 4px 0 0;
        color: #fff;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .card .card-header h3 {
            font-size: 20px;
        }

        .card .card-header i {
            font-size: 32px;
            vertical-align: middle;
        }

    .card .card-body {
        -webkit-border-radius: 0 0 4px 4px;
        -moz-border-radius: 0 0 4px 4px;
        -ms-border-radius: 0 0 4px 4px;
        -o-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
    }

        .card .card-body.card-body--padding {
            padding: 1.5rem;
        }

    .card .card-content {
        padding: 20px;
    }

.policy-cards .card-grid-item {
    margin-bottom: 30px;
}

.policy-cards .card {
    height: 100%;
}

    .policy-cards .card .card-body {
        height: calc(100% - 76px);
    }

.policy-cards .policy-info {
    padding: 20px;
}

.policy-cards .policy-info-item {
    margin-bottom: 10px;
}

    .policy-cards .policy-info-item label {
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 700;
        color: #888;
    }

    .policy-cards .policy-info-item p {
        color: #484848;
        font-size: 16px;
        margin-bottom: 0;
    }

.policy-cards .card-columns--md {
    height: 100%;
}

    .policy-cards .card-columns--md .column--policy {
        flex: 3;
    }

    .policy-cards .card-columns--md .column--agency {
        flex: 4;
    }

.policy-cards .agency-info {
    height: 100%;
    padding: 20px;
    background-color: #f4f4f4;
}

    .policy-cards .agency-info .agency-info-box {
        background-color: #fff;
        padding: 20px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        height: 100%;
    }

    .policy-cards .agency-info .agency-info-title {
        margin-bottom: 20px;
    }

    .policy-cards .agency-info .agency-info-item {
        display: flex;
        color: #3a3a3a;
        font-size: 14px;
        margin-bottom: 10px;
    }

        .policy-cards .agency-info .agency-info-item b {
            color: #eb1c74;
            font-weight: 700;
            margin-right: 10px;
        }

        .policy-cards .agency-info .agency-info-item a {
            color: #3a3a3a;
        }

            .policy-cards .agency-info .agency-info-item a:hover {
                color: #eb1c74;
            }

    .policy-cards .agency-info .qs-btn {
        margin-top: 30px;
    }

@media screen and (min-width: 768px) {
    .card-columns--md {
        display: flex;
        height: 100%;
    }

        .card-columns--md .card-column {
            flex: 1 1;
        }
}

@media screen and (min-width: 992px) {
    .policy-cards {
        display: flex;
        margin: 20px -15px -15px -15px;
        flex-wrap: wrap;
    }

        .policy-cards .card-grid-item {
            width: 50%;
            padding: 0 15px;
        }
}

.address-card .address-card-title {
    font-size: 22px;
    color: #eb1c74;
    margin-bottom: 5px;
}

.address-card .address-card-sub-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2346;
    margin: 10px 0 0 0;
}

.address-card .address-card-address {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.address-card .address-card-description {
    color: #6e6e6e;
}

.vehicle-card .vehicle-card-title {
    font-size: 18px;
    color: #eb1c74;
    margin-bottom: 5px;
    display: inline-block;
}

.vehicle-card .vehicle-card-price {
    color: #1f2346;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    float: right;
}

/* Coupons */
.coupon-portlet {
    box-sizing: content-box;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 2.2rem);
    -webkit-filter: drop-shadow(0px 1px 15px rgba(38, 31, 65, 0.08));
    filter: drop-shadow(0px 1px 15px rgba(38, 31, 65, 0.08));
}

.coupon-top {
    background-color: #fff;
    flex: 1;
    padding: 20px 20px 5px 20px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

    .coupon-top .coupon-title {
        font-size: 16px;
        font-weight: 700;
    }

.coupon-rip {
    flex: 0 0 20px;
    background-color: #fff;
    height: 20px;
    margin: 0 10px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAACCAYAAAB7Xa1eAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuOWwzfk4AAAAaSURBVBhXY5g7f97/2XPn/AcCBmSMQ+I/AwB2eyNBlrqzUQAAAABJRU5ErkJggg==);
    background-size: 4px 2px;
    background-repeat: repeat-x;
    background-position: center;
    position: relative;
    box-szhadow: 0 1px 0 0 #fff, 0 -1px 0 0 #fff;
}

    .coupon-rip:before, .coupon-rip:after {
        box-sizing: content-box;
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        border: 5px solid transparent;
        border-top-color: #fff;
        border-right-color: #fff;
        border-radius: 100%;
        pointer-events: none;
    }

    .coupon-rip:before {
        left: -10px;
    }

    .coupon-rip:after {
        transform: translate(-50%, -50%) rotate(225deg);
        right: -40px;
    }

.coupon-bottom {
    background-color: #fff;
    padding: 5px 20px 20px 20px;
    text-align: center;
}

.coupon-code {
    font-weight: 700;
    margin: 0 !important;
}

/* Campaign Contact Info */
.campaign-contact-info {
    margin-top: 2rem;
}

/* Landing Pages */
.landing-template {
    background-color: #1f2346;
    height: auto;
}

.landing-promo {
    max-width: 100%;
    padding: 60px 0;
    height: 100%;
    position: relative;
}

    .landing-promo .promo-information {
        color: #fff;
    }

        .landing-promo .promo-information .title {
            font-size: 32px;
            line-height: 1.15;
        }

            .landing-promo .promo-information .title .title-1 {
                color: inherit;
            }

            .landing-promo .promo-information .title .title-2 {
                color: inherit;
            }

        .landing-promo .promo-information p {
            font-size: 18px;
            line-height: 1.4;
            margin-top: 20px;
            max-width: 540px;
        }

.promo-text h2 {
    color: #eb1c74;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.promo-text .promo-bullet {
    margin-bottom: 30px;
}

    .promo-text .promo-bullet h3 {
        color: #1f2346;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .promo-text .promo-bullet p {
        margin-bottom: 5px;
    }

    .promo-text .promo-bullet .number {
        font-weight: 600;
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
    }

.insurance-hero {
    height: 640px;
    background-image: #fff;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

    .insurance-hero .container {
        height: 100%;
    }

.insurance-hero-container {
    width: 100%;
    height: 100%;
}

.insurance-type-selectors {
    width: 220px;
    position: relative;
}

    .insurance-type-selectors .insurance-type-selector {
        position: absolute;
        background-color: #fff;
        padding: 60px 0;
        height: 100%;
        top: 0;
        left: -30px;
        margin-top: -30px;
    }

        .insurance-type-selectors .insurance-type-selector a {
            width: 260px;
            padding: 12px 30px;
            border-radius: 0;
            background-color: #fff;
        }

            .insurance-type-selectors .insurance-type-selector a:hover {
                background-color: #262847;
                border-bottom-color: #262847;
                color: #fff;
            }

            .insurance-type-selectors .insurance-type-selector a.active {
                border-radius: 0;
                background-color: #ea1c73;
                border-bottom-color: #ea1c73;
                color: #fff;
            }

                .insurance-type-selectors .insurance-type-selector a.active .arrow {
                    opacity: 1;
                    display: block;
                }

.insurance-hero-product {
    padding: 0 60px;
    position: relative;
    vertical-align: middle;
}

    .insurance-hero-product .product-features {
        position: relative;
        margin-top: 180px;
    }

.insurance-hero-proposal {
    width: 350px;
}

.proposal {
    position: relative;
    background-color: #fff;
}

    .proposal:before {
        display: none;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background-color: #f6f6f6;
    }

.proposal-aside-success {
    padding: 40px 20px;
    max-width: 640px;
    margin: auto;
    text-align: center;
}

    .proposal-aside-success .proposal-aside-success__title {
        font-size: 20px;
        color: #1f2346;
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 400;
    }

        .proposal-aside-success .proposal-aside-success__title em {
            font-style: normal;
            color: #94d60a;
            font-weight: 700;
        }

    .proposal-aside-success .proposal-aside-success__buttons {
        max-width: 240px;
        margin: 30px auto;
    }

        .proposal-aside-success .proposal-aside-success__buttons .qs-btn {
            display: block;
            margin-bottom: 20px;
        }

    .proposal-aside-success p {
        font-size: 16px;
        color: #6e6e6e;
    }

        .proposal-aside-success p em {
            font-style: normal;
            color: #1f2346;
        }

@media screen and (min-width: 992px) {
    .proposal-aside-success {
        padding: 80px 20px;
    }

        .proposal-aside-success .proposal-aside-success__title {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .proposal-aside-success .proposal-aside-success__buttons {
            max-width: 240px;
            margin: 30px auto;
        }

            .proposal-aside-success .proposal-aside-success__buttons .qs-btn {
                display: block;
                margin-bottom: 20px;
            }

        .proposal-aside-success p {
            font-size: 18px;
        }
}

.proposal-aside-container {
    display: none;
    position: relative;
    width: 350px;
    background-color: #fff;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    flex: 0 0 350px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

.proposal-container {
    position: relative;
    background-color: #fff;
}

    .proposal-container.success .proposal-questions {
        display: none;
    }

    .proposal-container.success .proposal-aside-container {
        display: block;
        width: 100%;
        flex: 0 0 auto;
    }

        .proposal-container.success .proposal-aside-container .proposal-aside-header {
            background-color: #94d60a;
        }

            .proposal-container.success .proposal-aside-container .proposal-aside-header .m-stack {
                width: auto;
                margin: auto;
            }

        .proposal-container.success .proposal-aside-container .proposal-aside-content {
            display: none;
        }

.proposal-progress {
    display: none;
    background-color: #f6f6f6;
    height: 120px;
    position: relative;
}

.progress-link {
    text-align: center;
}

    .progress-link .progress-link__title {
        display: block;
        color: #b4b4b4;
    }

    .progress-link .progress-link__bar {
        display: block;
        position: relative;
        margin: 8px 0 0 0;
    }

        .progress-link .progress-link__bar:before, .progress-link .progress-link__bar:after {
            display: block;
            content: "";
            position: absolute;
            z-index: 5;
            top: 50%;
            width: 50%;
            border-bottom: 2px solid #cecece;
            margin-top: -1px;
        }

        .progress-link .progress-link__bar:before {
            left: 0;
        }

        .progress-link .progress-link__bar:after {
            left: 50%;
        }

    .progress-link .progress-link__circle {
        position: relative;
        z-index: 10;
        display: block;
        width: 40px;
        height: 40px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        background-color: #cecece;
        margin: 0 auto;
        border: 12px solid #f6f6f6;
    }

    .progress-link.success .progress-link__title {
        color: #484848;
    }

    .progress-link.success .progress-link__bar:before, .progress-link.success .progress-link__bar:after {
        border-color: #eb1c74;
    }

    .progress-link.success .progress-link__circle {
        background-color: #eb1c74;
    }

    .progress-link:hover .progress-link__title {
        color: #1f2346;
    }

    .progress-link:hover .progress-link__circle {
        background-color: #1f2346;
    }

    .progress-link.active .progress-link__title {
        color: #eb1c74;
    }

    .progress-link.active .progress-link__bar:before {
        border-color: #eb1c74;
    }

    .progress-link.active .progress-link__circle {
        background-color: #eb1c74;
    }

        .progress-link.active .progress-link__circle:before {
            display: block;
            content: "";
            position: absolute;
            top: -12px;
            left: -12px;
            z-index: 9;
            border: 1px solid #eb1c74;
            width: 40px;
            height: 40px;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
        }

    .progress-link:first-child .progress-link__bar:before {
        display: none;
    }

    .progress-link:last-child .progress-link__bar:after {
        display: none;
    }

.proposal-content {
    background-color: #fff;
}

    .proposal-content .step-content {
        padding: 30px 0;
    }

    .proposal-content .proposal-description {
        margin-bottom: 20px;
    }

.proposal-aside-header {
    background-color: #eb1c74;
    height: 120px;
    color: #fff;
    padding: 0 20px;
}

.proposal-product-icon {
    font-size: 48px;
    width: 48px;
}

.proposal-product-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    padding-left: 20px;
}

.proposal-aside-content {
    padding: 20px;
}

.proposal-aside-section {
    padding: 10px 20px;
    border-bottom: 1px solid #e4e4e4;
}

.content-block {
    margin-bottom: 20px;
}

    .content-block .content-block-title {
        font-size: 18px;
        font-weight: 600;
        color: #eb1c74;
        margin-bottom: 10px;
    }

.text-block .text-block-title {
    font-weight: 600;
    text-transform: uppercase;
}

.text-block .tip {
    cursor: help;
    display: inline-block;
    line-height: 12px;
    padding-left: 1px;
    margin-left: 2px;
    width: 14px;
    height: 14px;
    text-align: center;
    color: #747474;
    border: 1px solid #747474;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.list-block {
    font-size: 14px;
    list-style-type: disc;
    padding-left: 20px;
}

    .list-block .list-block-item {
        margin-bottom: 10px;
    }

.proposal-aside-content .content-block {
    margin-bottom: 10px;
}

.proposal-aside-content .text-block {
    color: #2e2e2e;
    margin-bottom: 10px;
    font-size: 14px;
}

    .proposal-aside-content .text-block .text-block-text {
        font-family: "Open Sans", sans-serif;
    }

.proposal-aside-content .text-block--accordion .text-block-title--accordion .toggle-icon {
    position: relative;
    margin-left: 10px;
    top: 3px;
    color: #e4e4e4;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.proposal-aside-content .text-block--accordion .text-block-title--accordion.collapsed .toggle-icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.proposal-aside-content .text-block--accordion .text-block-content {
    background-color: #f6f6f6;
    margin: 0 -20px;
}

    .proposal-aside-content .text-block--accordion .text-block-content .text-block-content-inner {
        padding: 15px 20px;
        max-height: 250px;
        overflow: hidden;
        overflow-y: scroll;
    }

        .proposal-aside-content .text-block--accordion .text-block-content .text-block-content-inner .text-block:last-child {
            margin-bottom: 0;
        }

.proposal-aside-button {
    margin-top: 20px;
}

.traveler-items {
    padding-left: 40px;
}

.traveler-result {
    display: flex;
    margin-top: 10px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.traveler-result-block {
    flex: 1;
    padding: 10px 12px;
    font-size: 14px;
    background-color: #f6f6f6;
    border: 1px solid #f6f6f6;
}

.traveler-result-button {
    width: 80px;
    text-align: center;
    background-color: #a1a1a1;
    font-size: 14px;
    color: #fff;
}

    .traveler-result-button:hover {
        background-color: #969696;
    }

.traveler-is-child .form-control {
    margin-top: 10px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.traveler-is-child .select2-container--qs .selection {
    margin-top: 10px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.help-card {
    font-size: 14px;
    background-color: #f6f6f6;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

    .help-card .help-card-top {
        display: flex;
        margin-bottom: 6px;
    }

    .help-card .help-flag {
        display: block;
        height: 24px;
        margin: 0 10px 0 0;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        border-radius: 2px;
    }

    .help-card .help-card-title {
        font-size: 16px;
        font-weight: 600;
    }

.payment-card .card-wrapper {
    display: none;
}

.payment-information {
    max-width: 350px;
    margin: 10px auto 0 auto;
}

.payment-installment-card {
    max-width: 350px;
    margin: 20px auto 0 auto;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

    .payment-installment-card .payment-installment-container {
        display: flex;
    }

    .payment-installment-card .payment-installment-list {
        display: flex;
        margin: 10px -2px 0 -2px;
    }

        .payment-installment-card .payment-installment-list .payment-installment-col {
            padding: 0 2px;
        }

        .payment-installment-card .payment-installment-list img {
            display: block;
            width: 60px;
            max-width: 100%;
        }

        .payment-installment-card .payment-installment-list:first-child {
            margin-right: 0;
        }

        .payment-installment-card .payment-installment-list:last-child {
            margin-left: 0;
        }

    .payment-installment-card p {
        margin-top: 10px;
        font-size: 12px;
        color: #484848;
    }

@media screen and (min-width: 992px) {
    .payment-card .card-wrapper {
        display: block;
    }

    .payment-installment-card .payment-installment-container {
        display: block;
    }

    .payment-installment-card .payment-installment-list {
        display: flex;
        margin: 10px -5px 0 -5px;
    }

        .payment-installment-card .payment-installment-list .payment-installment-col {
            padding: 0 5px;
        }

        .payment-installment-card .payment-installment-list img {
            width: 80px;
        }

        .payment-installment-card .payment-installment-list:first-child {
            margin-right: -5px;
        }

        .payment-installment-card .payment-installment-list:last-child {
            margin-left: -5px;
        }
}

.installment-radio .m-radio {
    display: block;
    margin-bottom: 15px;
}

.installment-radio .installment-radio-title {
    font-weight: 400;
    display: inline-block;
    min-width: 40%;
}

.installment-radio .installment-radio-text {
    font-weight: 400;
    text-align: right;
}

.proposal-continue {
    margin-top: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

    .proposal-continue .proposal-continue-container {
        background-color: #f6f6f6;
        padding: 10px 20px;
    }

    .proposal-continue .proposal-continue-title {
        font-weight: 400;
        font-size: 18px;
        color: #2e2e2e;
    }

        .proposal-continue .proposal-continue-title b {
            font-weight: 700;
        }

        .proposal-continue .proposal-continue-title span {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #484848;
        }

    .proposal-continue .proposal-continue-list {
        font-size: 14px;
    }

        .proposal-continue .proposal-continue-list b {
            font-size: 16px;
            font-weight: 400;
        }

    .proposal-continue .proposal-continue-price {
        font-family: "Open Sans", sans-serif;
        line-height: 1;
        font-size: 24px;
        font-weight: 700;
        margin: 4px 0;
    }

        .proposal-continue .proposal-continue-price .proposal-continue-price__icon {
            font-size: 18px;
        }

    .proposal-continue .proposal-continue-button {
        margin-top: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .proposal-continue .proposal-continue-agency-commission {
        font-size: 14px;
        font-weight: 400;
    }

.proposal .text-i-block {
    margin-top: 15px;
}

    .proposal .text-i-block .text-i-block__icon {
        width: 32px;
    }

        .proposal .text-i-block .text-i-block__icon i {
            display: block;
            font-size: 32px;
            color: #94d60a;
        }

        .proposal .text-i-block .text-i-block__icon.text-i-block__icon--fix i {
            position: relative;
            top: 2px;
        }

    .proposal .text-i-block .text-i-block__text {
        font-size: 14px;
        line-height: 1.2;
        padding: 0 0 0 15px;
        color: #484848;
    }

.proposal-product-mobile {
    background-color: #eb1c74;
    color: #fff;
    padding: 20px 15px;
    margin: 0 -15px;
}

    .proposal-product-mobile .proposal-product-icon {
        font-size: 32px;
        width: 32px;
    }

    .proposal-product-mobile .proposal-product-title {
        padding-left: 15px;
    }

.progress-link-mobile {
    display: block;
    font-size: 18px;
    margin: 0 -15px;
    background-color: #f6f6f6;
    color: #1f2346;
    padding: 20px 15px;
    text-align: center;
}

    .progress-link-mobile .progress-link__circle-container {
        width: 30px;
    }

    .progress-link-mobile .progress-link__circle {
        display: block;
        width: 30px;
        height: 30px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        margin: auto;
        background-color: #eb1c74;
        color: #1f2346;
    }

    .progress-link-mobile .progress-link__number {
        color: #fff;
    }

    .progress-link-mobile .progress-link__icon {
        display: none;
    }

        .progress-link-mobile .progress-link__icon i {
            line-height: 30px;
        }

    .progress-link-mobile .progress-link__title {
        padding-left: 15px;
        text-align: left;
    }

    .progress-link-mobile.success {
        border-bottom: 1px solid #e4e4e4;
    }

        .progress-link-mobile.success .progress-link__circle {
            background-color: #94d60a;
            color: #fff;
        }

        .progress-link-mobile.success .progress-link__number {
            display: none;
        }

        .progress-link-mobile.success .progress-link__icon {
            display: block;
        }

    .progress-link-mobile.active {
        color: #1f2346;
    }

.package-selection {
    font-size: 14px;
    text-align: center;
    margin: 0 -15px 20px -15px;
}

    .package-selection .cell {
        display: table-cell;
        height: 100%;
        width: 50%;
        padding: 4px 10px;
        vertical-align: middle;
    }

    .package-selection .cell-group {
        display: table;
        table-layout: fixed;
        height: 100%;
        width: 100%;
    }

    .package-selection .package-selection-head {
        display: table;
        width: 100%;
        height: 100%;
        font-size: 16px;
    }

        .package-selection .package-selection-head .cell {
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            transition: all 0.3s;
            background-color: #1f2346;
            color: #fff;
            padding: 10px;
        }

        .package-selection .package-selection-head .package-cell {
            vertical-align: top;
            border-left: 1px solid #fff;
        }

            .package-selection .package-selection-head .package-cell em {
                display: block;
                font-weight: 400;
                font-size: 14px;
                font-style: normal;
            }

            .package-selection .package-selection-head .package-cell.package--selected {
                background-color: #94d60a;
            }

    .package-selection .package-selection-row {
        display: table;
        width: 100%;
        height: 100%;
        padding: 10px 0;
    }

        .package-selection .package-selection-row:nth-child(2n) {
            background-color: #f3f3f3;
        }

    .package-selection .cell-title {
        display: none;
    }

    .package-selection .package-selection-number {
        color: #484848;
        border-left: 1px solid #e4e4e4;
    }

        .package-selection .package-selection-number:first-child {
            border-left: none;
        }

        .package-selection .package-selection-number.package--selected {
            color: #2e2e2e;
        }

    .package-selection .package-title {
        line-height: 1.2;
    }

        .package-selection .package-title .package__product-title {
            font-size: 16px;
        }

        .package-selection .package-title .package__title {
            display: block;
            font-size: 14px;
        }

    .package-selection .package-price {
        display: block;
        font-weight: 700;
        font-size: 24px;
        margin: 10px 0;
        line-height: 1;
    }

    .package-selection .travel-package {
        padding: 0;
        border-left: 1px solid #fff;
    }

.package-selector {
    display: block;
    height: 100%;
    text-align: center;
}

    .package-selector input[type="checkbox"],
    .package-selector input[type="radio"] {
        display: none;
    }

    .package-selector .package-selector-group {
        cursor: pointer;
        display: block;
        height: 100%;
        background-color: #1f2346;
        color: #fff;
        padding: 10px;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .package-selector .package-selector-text {
        color: #fff;
        font-weight: 400;
    }

    .package-selector .package-selector-indicator {
        display: block;
        margin: 0 auto;
        position: relative;
        width: 24px;
        height: 24px;
        background-color: #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
    }

    .package-selector input:checked + .package-selector-group {
        background-color: #94d60a;
    }

        .package-selector input:checked + .package-selector-group .package-selector-indicator:after {
            display: block;
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #94d60a;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
            top: 6px;
            left: 6px;
        }

@media screen and (min-width: 992px) {
    .proposal-container {
        display: flex;
        justify-content: flex-end;
    }

    .proposal-aside-container {
        display: block;
    }

    .proposal-content {
        background-color: #fff;
        padding: 30px 30px 30px 0;
    }

        .proposal-content .step-content {
            padding: 0;
        }

    .proposal:before {
        display: block;
    }

    .proposal-progress {
        display: block;
    }

    .proposal-product-mobile {
        display: none;
    }

    .progress-link-mobile {
        display: none;
    }

    .proposal-step-button-mobile {
        display: none;
    }

    .package-selection {
        font-size: 16px;
        margin: 0 0 30px 0;
        text-align: left;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        overflow: hidden;
    }

        .package-selection .package-selection-head {
            font-size: 18px;
        }

            .package-selection .package-selection-head .cell {
                padding: 20px;
            }

        .package-selection .package-selection-body {
            border: 1px solid #e4e4e4;
        }

        .package-selection .package-selection-row {
            padding: 0;
        }

        .package-selection .cell {
            padding: 10px 20px;
        }

        .package-selection .cell-col {
            display: table-cell;
            vertical-align: middle;
        }

        .package-selection .package-selection-number {
            border-left: 1px solid #e4e4e4;
        }

            .package-selection .package-selection-number:first-child {
                border-left: 1px solid #e4e4e4;
            }

        .package-selection .package-title .package__product-title {
            font-size: 20px;
        }

        .package-selection .package-title .package__title {
            font-size: 16px;
        }

        .package-selection .package-price {
            font-size: 30px;
        }

        .package-selection .travel-package {
            padding: 0;
            overflow: hidden;
        }

            .package-selection .travel-package:first-child {
                border-bottom-left-radius: 4px;
            }

            .package-selection .travel-package:last-child {
                border-bottom-right-radius: 4px;
            }

    .travel-package-selection .cell-header {
        width: 50%;
    }

    .travel-package-selection .cell-title {
        width: 50%;
    }

    .package-selector .package-selector-group {
        padding: 10px 20px;
    }

    .proposal-continue-mobile {
        display: none;
    }
}

.proposal-guarantee {
    margin-bottom: 30px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

    .proposal-guarantee .proposal-guarantee-icon {
        padding: 20px;
        width: 72px;
        text-align: center;
        color: #94d60a;
    }

        .proposal-guarantee .proposal-guarantee-icon i {
            display: block;
            font-size: 32px;
        }

    .proposal-guarantee .proposal-guarantee-content {
        padding: 20px 20px 20px 0;
    }

    .proposal-guarantee .proposal-guarantee-title {
        color: #2e2e2e;
        font-size: 20px;
        font-weight: 700;
    }

    .proposal-guarantee .proposal-guarantee-text {
        color: #484848;
    }

    .proposal-guarantee .proposal-guarantee-column {
        padding-bottom: 20px;
        padding-left: 72px;
        text-align: left;
        margin-left: 30px;
    }

    .proposal-guarantee .proposal-guarantee-price {
        width: 100px;
        font-size: 24px;
        font-weight: 700;
        color: #2e2e2e;
    }

        .proposal-guarantee .proposal-guarantee-price i {
            position: relative;
            top: 2px;
        }

@media screen and (min-width: 992px) {
    .proposal-guarantee .proposal-guarantee-icon {
        width: 120px;
    }

        .proposal-guarantee .proposal-guarantee-icon i {
            font-size: 48px;
        }

    .proposal-guarantee .proposal-guarantee-content {
        padding: 20px 0;
    }

    .proposal-guarantee .proposal-guarantee-title {
        font-size: 20px;
    }

    .proposal-guarantee .proposal-guarantee-column {
        padding: 0;
        width: 260px;
    }

    .proposal-guarantee .proposal-guarantee-price {
        width: 120px;
        text-align: center;
    }

    .proposal-guarantee .proposal-guarantee-action {
        width: 120px;
    }
}

@media screen and (min-width: 1200px) {
    .proposal-guarantee .proposal-guarantee-icon {
        width: 180px;
    }
}

.traveler-item .form-group--icon {
    margin-bottom: 0;
}

.post-section {
    padding: 40px 0;
}

    .post-section .title {
        margin-bottom: 40px;
    }

.post-item-grid {
    margin-bottom: 30px;
}

.post-item {
    position: relative;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .post-item.post-item--past {
        opacity: 0.6;
    }

        .post-item.post-item--past:hover {
            opacity: 1;
        }

.post-item-image img {
    display: block;
    max-width: 100%;
}

.post-item-content {
    padding: 15px 20px;
}

    .post-item-content .post-item-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

        .post-item-content .post-item-title a {
            color: #eb1c74;
        }

            .post-item-content .post-item-title a:hover {
                color: #1f2346;
            }

    .post-item-content .post-item-details {
        position: absolute;
        bottom: 15px;
        left: 20px;
        font-size: 14px;
        color: #1f2346;
    }

.post-legend {
    margin-bottom: 10px;
}

    .post-legend .post-legend-title {
        font-size: 14px;
        text-transform: uppercase;
        color: #888;
        display: block;
    }

.breadcrumb {
    font-size: 14px;
    padding: 20px 0;
    background: #f6f6f6;
}

    .breadcrumb .breadcrumb-item {
        color: #5e5e5e;
    }

        .breadcrumb .breadcrumb-item.active {
            color: #eb1c74;
            font-weight: 700;
        }

        .breadcrumb .breadcrumb-item:hover {
            color: #262847;
            cursor: pointer;
        }

    .breadcrumb i {
        font-size: 10px;
        line-height: 14px;
        color: #bebebe;
        margin: 0 4px;
    }

.post {
    background-color: #fff;
}

.post-link {
    color: #eb1c74;
    font-weight: 500;
    cursor: pointer;
}

.post-detail {
    font-family: "Open Sans", sans-serif;
}

    .post-detail .post-detail-section {
        padding: 30px 15px;
        width: 100%;
        max-width: 860px;
    }

        .post-detail .post-detail-section .post-title {
            color: #eb1c74;
            line-height: 1.2;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .post-detail .post-detail-section p {
            margin-bottom: 15px;
        }

        .post-detail .post-detail-section .app-buttons {
            margin-bottom: 15px;
        }

.post-source-item {
    width: 480px;
    max-width: 100%;
    margin: 20px auto;
}

    .post-source-item img {
        max-width: 100%;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

    .post-source-item .post-source-item-title {
        color: #000;
        font-weight: 600;
        margin-top: 10px;
    }

    .post-source-item .post-source-item-category {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
        color: #888;
    }

    .post-source-item .post-source-video {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }

        .post-source-item .post-source-video iframe {
            height: 100%;
            width: 100%;
        }

        .post-source-item .post-source-video:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 56.25%;
        }

        .post-source-item .post-source-video > .ratio-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

    .post-source-item .post-source:hover .post-source-item-title {
        color: #eb1c74;
    }

    .post-source-item .post-source-image-desc {
        font-weight: 700;
        font-size: 12px;
        color: #888;
    }

@media screen and (min-width: 992px) {
    .post-source-item {
        margin: 20px 0;
    }
}

.post-share {
    padding: 0 15px 15px 15px;
}

.post-image-container {
    height: 100%;
}

    .post-image-container img {
        display: block;
        max-width: 100%;
    }

.post-image img {
    width: 100%;
    margin-top: 10px;
}

.post-follow .social-follow a {
    font-size: 14px;
}

.post-follow .social-follow i {
    position: relative;
    top: 2px;
    padding-right: 4px;
}

.social-share {
    padding: 20px;
    border-top: 1px solid #e4e4e4;
    text-align: center;
}

    .social-share p {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .social-share i {
        margin: 0 15px 0 0;
        color: #000;
        font-size: 20px;
        padding: 10px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
        border-radius: 30px;
    }

        .social-share i.icon-tw {
            border: 2px solid #55acee;
            color: #55acee;
        }

        .social-share i.icon-fb {
            border: 2px solid #3b5998;
            color: #3b5998;
        }

        .social-share i.icon-mail {
            border: 2px solid #0871bd;
            color: #0871bd;
        }

        .social-share i:hover {
            color: #fff;
        }

            .social-share i:hover.icon-tw {
                background-color: #55acee;
            }

            .social-share i:hover.icon-fb {
                background-color: #3b5998;
            }

            .social-share i:hover.icon-mail {
                background-color: #0871bd;
            }

@media screen and (min-width: 992px) {
    .breadcrumb {
        font-size: 16px;
        padding: 30px 0;
    }

    .post-detail {
        padding-right: 35px;
    }

        .post-detail .post-detail-section {
            padding: 30px 0;
        }

            .post-detail .post-detail-section .post-title {
                font-size: 32px;
                margin-bottom: 20px;
            }

    .post-share {
        padding: 0 0 0 20px;
        width: 64px;
    }

    .social-share {
        padding: 20px 0;
        border: none;
        text-align: right;
    }

        .social-share p {
            display: none;
        }

        .social-share i {
            margin: 0 0 10px 0;
        }
}

.side-nav-media li {
    color: #1f2346;
    font-size: 1.2rem;
    padding: 0.6rem 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

    .side-nav-media li .tablinks {
        padding-left: 1rem;
        border-left: 4px solid transparent;
    }

        .side-nav-media li .tablinks.active {
            color: #eb1c74;
            border-left: 4px solid #eb1c74;
        }

        .side-nav-media li .tablinks:hover {
            color: #eb1c74;
            border-left: 4px solid #eb1c74;
        }

.post-video-item {
    padding-bottom: 0;
}

    .post-video-item iframe {
        width: 100%;
    }

    .post-video-item .post-item-title {
        font-size: 1rem;
        color: #1f2346;
        font-weight: 500;
    }

.post-item-mediakit {
    padding-bottom: 0;
}

    .post-item-mediakit figure {
        width: 100%;
    }

    .post-item-mediakit .post-item-title {
        font-size: 1rem;
        color: #1f2346 !important;
        font-weight: 500;
        text-align: center;
    }

.post-press-item {
    padding: 10px;
    color: #000;
}

    .post-press-item .press-item-content {
        padding: 10px;
    }

    .post-press-item .post-item-title {
        font-size: 1.2 rem;
        color: #eb1c74;
        font-weight: 700;
    }

    .post-press-item .post-legend {
        color: #000;
    }

    .post-press-item .press-item-date {
        padding: 10px;
        background: #e4e4e4;
        border-radius: 6px;
        color: #888;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 1rem;
    }

.press-video-item {
    margin-top: 20px;
    max-width: 100%;
}

.post-item-legal {
    padding: 2rem 1.2rem;
}

.address-code-search {
    margin-bottom: 0px;
}

.contract-big-title {
    margin-bottom: 40px;
    font-size: 1.25rem;
    color: #262847;
}

.contract-sub-title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #262847;
}

.contract-sub-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #262847;
}

.contract-sub-title-2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #484848;
}

.contract-page .list {
    margin-bottom: 40px;
    margin-top: 40px;
}

.contract-page a {
    color: #eb1c74;
}

    .contract-page a:hover {
        color: #ef498f;
    }

/* Icon List */
#landing-legal.page-content {
    padding-top: 0;
}

.legal-page h1 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #1f2346;
}

.legal-page .list-icon {
    background-color: #fff;
    padding-top: 50px;
}

    .legal-page .list-icon .list-item {
        display: table;
        color: #020202;
        margin-bottom: 20px;
        color: #888;
    }

        .legal-page .list-icon .list-item .text {
            font-size: 18px;
            font-weight: 500;
            padding-left: 0;
        }

        .legal-page .list-icon .list-item:hover {
            color: #eb1c74;
        }

        .legal-page .list-icon .list-item.active {
            color: #eb1c74;
        }

.legal-page .content {
    padding-top: 50px;
    padding-left: 40px;
}

.modal-popup {
    margin-top: 64px;
}

    .modal-popup .modal-header {
        background: #eb1c74;
        padding: 0;
        border: none;
        text-align: center;
    }

        .modal-popup .modal-header .modal-title {
            height: 65px;
            line-height: 63px;
            color: #fff;
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            display: inline-block;
        }

    .modal-popup .modal-body {
        padding: 0;
        position: relative;
    }

        .modal-popup .modal-body .ar-16-9 {
            position: relative;
        }

            .modal-popup .modal-body .ar-16-9:before {
                display: block;
                content: "";
                width: 100%;
                padding-top: 56.25%;
            }

            .modal-popup .modal-body .ar-16-9 > .ratio-content {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            .modal-popup .modal-body .ar-16-9 .ar-video {
                width: 100%;
                height: 100%;
            }

    .modal-popup .modal-content {
        border: 0;
    }

    .modal-popup .modal-close {
        float: right;
        font-size: 16px;
        margin-top: 20px;
        margin-right: 20px;
        color: #fff;
    }

.image-bg--gradient {
    background: #fbfbfb;
    background: linear-gradient(0deg, #fbfbfb 0%, #e4eef5 100%);
}

.landing-product-container {
    padding: 20px 0;
}

@media screen and (min-width: 992px) {
    .landing-product-container {
        padding: 60px 0 30px 0;
        margin-right: 280px;
    }
}

.tss-product-information {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.tss-product-information-lead {
    font-size: 16px;
    font-weight: 600;
    max-width: 200px;
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .tss-product-information-lead {
        font-size: 24px !important;
        max-width: 100%;
    }
}

.tss-product-information-slogan img {
    display: block;
    width: 140px;
}

@media screen and (min-width: 992px) {
    .tss-product-information-slogan {
        margin-top: -70px;
        margin-right: 18px;
    }
}

.tss-product-information-character {
    flex: 0 0 200px;
}

    .tss-product-information-character img {
        display: block;
        max-width: 100%;
    }

.tss-product-information-oxygen {
    flex: 0 0 200px;
}

    .tss-product-information-oxygen img {
        display: block;
        max-width: 100%;
    }

.tss-product-information-text {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    .tss-product-information-text {
        flex-direction: row;
        flex: 1 0;
        justify-content: space-between;
    }

    .tss-product-information-slogan img {
        width: 200px;
    }

    .tss-product-information-character {
        width: 330px;
        position: absolute;
        top: 36px;
        right: -26px;
    }

    .tss-product-information-oxygen {
        width: 575px;
        position: absolute;
        top: 36px;
        right: -26px;
    }
}

.landing-action-buttons--multiline {
    margin: 20px 0;
    position: relative;
    z-index: 30;
}

    .landing-action-buttons--multiline .landing-action-buttons {
        margin: 0;
    }

@media screen and (min-width: 992px) {
    .landing-action-buttons--multiline {
        margin: 0 0 30px 0;
    }
}

.box-proposal {
    position: relative;
    z-index: 40;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    background: #e4eef5 0% 0% no-repeat padding-box;
    padding: 24px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom: 20px;
}

    .box-proposal .box-proposal-button {
        margin-top: 29px;
        font-size: 16px;
        min-height: 43px;
        max-height: 43px;
    }

.iframe-result-container {
    background: #fff;
    padding: 15px 15px;
    margin: 0;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.06);
}

    .iframe-result-container .iframe-tss {
        height: 100%;
        width: 100%;
    }

    .iframe-result-container .iframe-content {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        padding: 0 15px;
    }

@media screen and (min-width: 992px) {
    .grid-text {
        display: flex;
    }
}

.tss-pre-accordion-icon {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 5rem;
}

.grid-text-figure {
    width: 200px;
    margin: 0 auto 20px auto;
}

    .grid-text-figure img {
        display: block;
        width: 100%;
    }

@media screen and (min-width: 992px) {
    .grid-text-figure {
        flex: 0 0 300px;
        margin: 32px 90px;
    }
}

@media screen and (min-width: 992px) {
    .grid-text-col {
        padding-top: 48px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }
}

.grid-text-row {
    margin-bottom: 20px;
}

.grid-text-title {
    font-size: 18px;
    color: #1f2346;
    margin-bottom: 10px;
}

.tss-landing-box {
    margin-top: 20px;
    flex-direction: column;
    padding: 24px;
    text-align: left;
    align-items: flex-start;
}

@media screen and (min-width: 992px) {
    .tss-landing-box {
        flex-direction: row;
        justify-content: space-between;
        padding: 36px;
    }
}

.tss-landing-box-col {
    padding: 0;
}

.tss-landing-box-icon img {
    display: block;
    width: 36px;
}

@media screen and (min-width: 992px) {
    .tss-landing-box-icon img {
        width: 72px;
    }
}

.tss-landing-box-text {
    padding: 12px 0;
}

@media screen and (min-width: 992px) {
    .tss-landing-box-text {
        padding: 0 36px;
    }
}

.tss-landing-box-network .tss-landing-box-network-title {
    font-size: 16px;
    font-weight: 500;
}

@media screen and (min-width: 992px) {
    .tss-landing-box-network {
        flex: 0 0 240px;
    }
}

.tss-network--options li {
    display: flex;
    align-items: center;
}

.tss-network-icon {
    display: block;
    width: 18px;
    margin-right: 4px;
}

.tss-network-icon--pink {
    filter: invert(22%) sepia(82%) saturate(6563%) hue-rotate(325deg) brightness(98%) contrast(87%);
}

.tss-network-icon--blue {
    filter: invert(14%) sepia(12%) saturate(2938%) hue-rotate(196deg) brightness(89%) contrast(96%);
}

.tss-network-icon--green {
    filter: invert(82%) sepia(33%) saturate(2701%) hue-rotate(28deg) brightness(96%) contrast(92%);
}

.acordion-title-modifier {
    display: block;
    color: #eb1c74;
    margin-top: 12px;
    font-size: 16px;
    padding-top: 8px;
    font-weight: 600;
}

@media screen and (min-width: 992px) {
    .acordion-title-modifier {
        font-size: 24px !important;
    }
}

.acordion-sub-title-modifier {
    display: block;
    margin-top: 4px;
    color: #262847;
    font-size: 16px;
    font-weight: 400;
}

.tss-ek-hizmetler-container {
    margin-bottom: 24px;
}

.tss-wb-container {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.tss-wb-icon {
    margin-right: 12px;
}

    .tss-wb-icon img {
        display: block;
        width: 48px;
        height: 48px;
    }

@media screen and (min-width: 992px) {
    .tss-wb-icon img {
        width: 72px;
        margin-right: 16px;
    }
}

.tss-wb-title {
    font-size: 18px;
    color: #1f2346;
    font-weight: 400;
    align-self: center;
}

@media screen and (min-width: 992px) {
    .tss-wb-title {
        align-self: center;
        font-size: 24px;
        font-weight: 400;
    }
}

.tss-wb-modal {
    align-self: center;
    margin-left: auto;
    color: #eb1c74;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (min-width: 992px) {
    .tss-wb-modal {
        font-size: 18px;
    }
}

.tss-accordion-paragraph {
    margin-left: 5.5rem;
    list-style: none;
}

    .tss-accordion-paragraph li {
        margin-bottom: 8px;
    }

        .tss-accordion-paragraph li::before {
            content: "\2022";
            color: #eb1c74;
            display: inline-block;
            width: 1rem;
            line-height: 1rem;
            font-size: 2.5rem;
            vertical-align: middle;
        }

.tss-b-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 992px) {
    .tss-b-container {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

@media screen and (min-width: 992px) {
    .tss-b-content {
        padding-top: 28px;
    }
}

.tss-b-col {
    padding: 24px 48px 12px 24px;
    margin-bottom: 6px;
}

    .tss-b-col:after {
        content: "";
        display: block;
        margin: 32px auto 10px auto;
        width: 100%;
        border-bottom: 1px solid #00000029;
        filter: drop-shadow(10px 2px 10px #00000029);
    }

.tss-b-col--asc {
    margin: 0 20% 0 20%;
}

@media screen and (min-width: 992px) {
    .tss-b-col {
        padding: 40px;
        margin-bottom: 0;
        display: block;
        border-right: 1px solid #00000029;
        filter: drop-shadow(10px 2px 10px #00000029);
    }

        .tss-b-col:after {
            border-bottom: none;
        }

    .tss-b-col--asc {
        align-self: center;
        margin: 0 50px 0 60px;
    }
}

.tss-b-title {
    font-size: 24px;
    width: 100%;
    color: #eb1c74;
    font-weight: 600;
}

@media screen and (min-width: 992px) {
    .tss-b-title {
        position: relative;
        margin-top: 20px;
    }
}

.tss-b-icon {
    width: 144px;
    height: 80px;
    margin: 6px 0 12px 0;
}

@media screen and (min-width: 992px) {
    .tss-b-icon {
        position: absolute;
        right: 30px;
        top: 40px;
    }
}

.tss-b-title-sm {
    font-size: 20px;
    align-self: center;
    text-align: center;
    font-weight: 600;
    color: #eb1c74;
}

.tss-b-title-sm--dark {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: #262847;
}

@media screen and (min-width: 992px) {
    .tss-b-title-sm {
        margin-top: 24px;
    }
}

.tss-b-qr {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 12px auto;
}

    .tss-b-qr > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.tss-iframe-container {
    height: 100%;
}

    .tss-iframe-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.tss-modal-iframe-content {
    max-width: 100%;
}

@media screen and (min-width: 992px) {
    .tss-modal-iframe-content {
        width: 1100px;
    }
}

@media screen and (min-width: 1200px) {
    .tss-modal-iframe-content {
        width: 1170px;
    }
}

@media screen and (min-width: 1300px) {
    .tss-modal-iframe-content {
        width: 1270px;
    }
}

.tss-modal-iframe-content .modal-body {
    height: calc(100vh - 138px);
    padding: 0;
}

.tss-modal-info h3 {
    line-height: 70px;
    height: 48px;
    background: #fff;
    color: #eb1c74;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.tss-modal-action-buttons {
    display: flex;
    justify-content: center;
}

.tss-modal-info-texted h3 {
    line-height: 70px;
    height: 48px;
    background: #eb1c74;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.tss-modal-info-texted .modal-text {
    padding: 26px;
}

    .tss-modal-info-texted .modal-text a:not(.button) {
        margin-top: 50px;
        font-family: "Open Sans", sans-serif;
        color: #eb1c74;
        font-weight: 700;
    }

        .tss-modal-info-texted .modal-text a:not(.button):hover {
            color: #eb1c74;
        }

    .tss-modal-info-texted .modal-text .button-stroke {
        margin-top: 15px;
        width: 100%;
        display: block;
        text-align: center;
    }

.tss-modal-info-texted p {
    padding: 0 24px !important;
    text-align: left;
}

.obgy-row-reverse {
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    .obgy-row-reverse {
        flex-direction: row-reverse !important;
    }
}

.obgy-title-modifier {
    display: block;
    color: #eb1c74;
    margin-top: 0;
    font-size: 18px;
    padding-top: 8px;
    font-weight: 700;
}

@media screen and (min-width: 992px) {
    .obgy-title-modifier {
        font-size: 20px !important;
        font-weight: 700;
    }
}

.obgy-character {
    margin-bottom: -24px;
}

    .obgy-character img {
        padding-top: 24px;
        padding-left: 82px;
        width: 100%;
        height: 100%;
    }

@media screen and (min-width: 992px) {
    .obgy-character {
        align-self: flex-end;
        margin-bottom: -36px;
        padding-right: 30px;
    }

        .obgy-character img {
            padding-top: 0;
            padding-left: 0;
            height: 322px;
            width: auto;
        }
}

.table-background-modifier {
    background-color: #f4f4f4 !important;
}

.taksit-icon-text {
    color: #eb1c74;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.is-quick-agency-modal-success-container {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    padding-bottom: 30px;
    border-top: 1px solid #e5e5e5;
}

    .is-quick-agency-modal-success-container p {
        font-weight: 700;
    }

.tss-error-circle {
    font-size: 48px;
    color: #ffc107;
    margin-top: 15px;
}

.tss-success-circle {
    font-size: 48px;
    color: #94d60a;
    margin-top: 15px;
}

.tss-traffic-landing-box {
    margin-top: 20px;
    flex-direction: column;
    padding: 24px;
    text-align: left;
    align-items: flex-start;
}

@media screen and (min-width: 992px) {
    .tss-traffic-landing-box {
        flex-direction: row;
        padding: 36px;
    }
}

.tss-traffic-landing-action-buttons--multiline {
    overflow-x: auto;
    margin: 20px 0;
    position: relative;
    z-index: 30;
}

    .tss-traffic-landing-action-buttons--multiline .landing-action-buttons {
        margin: 0;
    }

    .tss-traffic-landing-action-buttons--multiline .qs-btn-outline {
        font-weight: 800;
        border: 2px solid #002741;
    }

    .tss-traffic-landing-action-buttons--multiline .tss-traffic-qs-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 14px;
    }

    .tss-traffic-landing-action-buttons--multiline::-webkit-scrollbar {
        display: none;
    }

@media screen and (min-width: 992px) {
    .tss-traffic-landing-action-buttons--multiline {
        margin: 30px 0 30px 0;
    }
}

.tss-traffic-product-information {
    position: relative;
    color: #fff;
}

    .tss-traffic-product-information .title {
        font-size: 38px;
        line-height: 1.15;
    }

        .tss-traffic-product-information .title .title-1 {
            color: inherit;
        }

        .tss-traffic-product-information .title .title-2 {
            color: inherit;
            font-weight: 600;
        }

        .tss-traffic-product-information .title .title-3 {
            color: inherit;
            font-weight: 600;
        }

    .tss-traffic-product-information p {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 20px;
        max-width: 540px;
    }

    .tss-traffic-product-information.product-information--dark {
        color: #1f2346;
    }

.tss-traffic-product-information-text {
    margin-top: 12px;
    color: #1f2346;
    font-size: 24px;
    font-weight: 600;
}

.tss-traffic-product-images {
    margin-top: 65px;
}

.tss-traffic-product-image {
    flex: 0 0 200px;
}

    .tss-traffic-product-image img {
        display: block;
        max-width: 100%;
    }

@media screen and (min-width: 992px) {
    .tss-traffic-product-image {
        top: 36px;
        right: -26px;
        display: inline-block;
    }

        .tss-traffic-product-image img {
            height: 270px;
        }

    .traffic-landing-action-buttons {
        margin-bottom: 30px;
    }

        .traffic-landing-action-buttons .qs-btn {
            padding: 10px 30px;
        }
}

.landing-proposal img {
    width: 162px;
    margin: 0 auto;
    display: block;
}

.landing-proposal .tss-traffic-qs-btn {
    display: block;
    background-color: #ec1c74;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 12px;
    line-height: 1.45;
    transition: all 200ms ease-in-out;
    transition-property: box-shadow, color, padding, background, font-size;
    text-align: center;
    margin: 20px auto;
}

.traffic-landing-action-buttons {
    display: flex;
}

    .traffic-landing-action-buttons .qs-btn:first-child {
        margin-left: 0;
    }

.tss-traffic-product-information-character {
    flex: 0 0 250px;
}

    .tss-traffic-product-information-character img {
        display: block;
        max-width: 100%;
    }

@media screen and (min-width: 992px) {
    .tss-traffic-product-information-text {
        flex-direction: row;
        flex: 1 0;
        justify-content: space-between;
    }

    .tss-traffic-product-information-slogan img {
        width: 200px;
    }

    .tss-traffic-product-information-character {
        width: 570px;
        position: absolute;
        top: -45px;
        right: -26px;
    }
}

/*# sourceMappingURL=common.css.map */

.loading-icon {
    position: fixed;
    width: 20px;
    height: 20px;
    margin: 50px auto;
    background: url(/Content/images/loading-green-small.gif) 50% 50% no-repeat;
    background-size: 110px 90px;
}

.error-icon {
    position: fixed;
    width: 20px;
    height: 20px;
    margin: 50px auto;
    background: url(/Content/images/error.png) 50% 50% no-repeat;
}

/*loading icon değiştiği için kapatıldı*/
#loading {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8) url(/Content/css/quick-loading.gif) 50% 50% no-repeat;
     background-size: 400px 400px;
}

.loading {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8) url(/Content/css/quick-loading.gif) 50% 50% no-repeat;
    background-size: 400px 400px;
}

.loading-white {
    height: 100%;
    width: 100%;
    background: rgb(255 255 255 / 10%) url(/Content/css/quick-loading.gif) 50% 50% no-repeat;
    background-size: 400px 400px;
}
@charset "UTF-8";

@font-face {
  font-family: "quick-b2c";
  src:url(/Content/css/icons/fonts/quick-b2c.eot);
  src:url(/Content/css/icons/fonts/quick-b2c.eot?#iefix) format("embedded-opentype"),
    url(/Content/css/icons/fonts/quick-b2c.woff) format("woff"),
    url(/Content/css/icons/fonts/quick-b2c.ttf) format("truetype"),
    url(/Content/css/icons/fonts/quick-b2c.svg#quick-b2c) format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "quick-b2c" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "quick-b2c" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon-7-24-2:before {
  content: "\61";
}
.icon-icon-aninda:before {
  content: "\62";
}
.icon-icon-ayricalikli:before {
  content: "\63";
}
.icon-icon-bilgiler:before {
  content: "\64";
}
.icon-icon-dask:before {
  content: "\65";
}
.icon-icon-down:before {
  content: "\66";
}
.icon-icon-ekonomik-2:before {
  content: "\67";
}
.icon-icon-error:before {
  content: "\68";
}
.icon-icon-ferdi-kaza:before {
  content: "\6a";
}
.icon-icon-guvenli-2:before {
  content: "\6b";
}
.icon-icon-hasar:before {
  content: "\6c";
}
.icon-icon-heryerde:before {
  content: "\6d";
}
.icon-icon-question:before {
  content: "\6e";
}
.icon-icon-police:before {
  content: "\6f";
}
.icon-icon-no:before {
  content: "\70";
}
.icon-icon-moduler:before {
  content: "\71";
}
.icon-icon-mobil-2:before {
  content: "\72";
}
.icon-icon-menu:before {
  content: "\73";
}
.icon-icon-logout:before {
  content: "\74";
}
.icon-icon-linkedin:before {
  content: "\75";
}
.icon-icon-left:before {
  content: "\76";
}
.icon-icon-konut:before {
  content: "\77";
}
.icon-icon-kasko-2:before {
  content: "\78";
}
.icon-icon-instagram:before {
  content: "\79";
}
.icon-icon-hizli:before {
  content: "\7a";
}
.icon-icon-right:before {
  content: "\41";
}
.icon-icon-satin-al:before {
  content: "\42";
}
.icon-icon-self-servis-2:before {
  content: "\43";
}
.icon-icon-seyahat:before {
  content: "\44";
}
.icon-icon-smiley:before {
  content: "\45";
}
.icon-icon-teklifler:before {
  content: "\46";
}
.icon-icon-trafik-2:before {
  content: "\47";
}
.icon-icon-twitter:before {
  content: "\48";
}
.icon-icon-yes:before {
  content: "\4a";
}
.icon-k-feature-1:before {
  content: "\4b";
}
.icon-k-feature-2:before {
  content: "\4c";
}
.icon-k-feature-3:before {
  content: "\4d";
}
.icon-k-feature-9:before {
  content: "\4e";
}
.icon-k-feature-8:before {
  content: "\4f";
}
.icon-k-feature-7:before {
  content: "\50";
}
.icon-k-feature-6:before {
  content: "\51";
}
.icon-k-feature-5:before {
  content: "\52";
}
.icon-k-feature-4:before {
  content: "\53";
}
.icon-quick-icon:before {
  content: "\54";
}
.icon-user:before {
  content: "\55";
}
.icon-anlasmali-servis:before {
  content: "\56";
}
.icon-location-arrow:before {
  content: "\57";
}
.icon-k-feature-10:before {
  content: "\58";
}
.icon-icon-facebook:before {
  content: "\69";
}
.icon-mail:before {
  content: "\59";
}
.icon-tw:before {
  content: "\5a";
}
.icon-fb:before {
  content: "\30";
}
.icon-back-to-top:before {
  content: "\31";
}
.icon-icon-up:before {
  content: "\49";
}
.icon-icon-doctor:before {
  content: "\32";
}
.icon-credit-card:before {
  content: "\33";
}
.icon-safe:before {
  content: "\34";
}
.icon-plus:before {
  content: "\35";
}
.icon-minus:before {
  content: "\36";
}
.icon-link:before {
  content: "\37";
}
.icon-document-pdf:before {
  content: "\21";
}
.icon-check:before {
  content: "\38";
}
.icon-times:before {
  content: "\39";
}
.icon-uavt:before {
  content: "\22";
}
.icon-campaign:before {
  content: "\23";
}
.icon-icon-motosiklet:before {
  content: "\24";
}
.icon-icon-extreme:before {
  content: "\25";
}
.icon-icon-try:before {
  content: "\26";
}
.icon-user-outline:before {
  content: "\27";
}
.icon-search:before {
  content: "\28";
}
.icon-columns:before {
  content: "\29";
}
.icon-list:before {
  content: "\2a";
}
.icon-acente:before {
  content: "\2b";
}
.icon-musteri:before {
  content: "\2c";
}
.icon-police:before {
  content: "\2d";
}
.icon-social:before {
  content: "\2e";
}
.icon-arrow-combo:before {
  content: "\3a";
}
.icon-up-dir:before {
  content: "\2f";
}
.icon-down-dir:before {
  content: "\3b";
}
.icon-calendar:before {
  content: "\3c";
}
.icon-kayak:before {
  content: "\3e";
}
.icon-times-circle:before {
  content: "\3f";
}
.icon-kapkac:before {
  content: "\3d";
}
.icon-3ds:before {
  content: "\40";
}
.icon-in:before {
  content: "\5b";
}
.icon-insta:before {
  content: "\5d";
}
.icon-ambulans:before {
  content: "\5e";
}
.icon-asistans:before {
  content: "\5f";
}
.icon-benzin:before {
  content: "\60";
}
.icon-cekici:before {
  content: "\7b";
}
.icon-danismanlik:before {
  content: "\7c";
}
.icon-konaklama:before {
  content: "\7d";
}
.icon-super-trafik:before {
  content: "\7e";
}
.icon-phone:before {
  content: "\5c";
}
.icon-lastik:before {
  content: "\e000";
}
.icon-kurtarma:before {
  content: "\e001";
}
.icon-moto-asistans:before {
  content: "\e002";
}
.icon-moto-benzin:before {
  content: "\e003";
}
.icon-moto-cekici:before {
  content: "\e004";
}
.icon-moto-kurtarma:before {
  content: "\e005";
}
.icon-moto-lastik:before {
  content: "\e006";
}
.icon-moto-super:before {
  content: "\e007";
}
.icon-drone-insurance:before {
  content: "\e008";
}
.icon-tractor:before {
  content: "\e009";
}
.icon-helmet:before {
  content: "\e00a";
}
.icon-id:before {
  content: "\e00b";
}
.icon-kefalet:before {
  content: "\e00c";
}
.icon-steering-wheel:before {
  content: "\e00d";
}
.icon-eur:before {
  content: "\e00e";
}
.icon-usd:before {
  content: "\e00f";
}
.icon-bankruptcy:before {
  content: "\e010";
}
.icon-air-conditioner:before {
  content: "\e011";
}
.icon-carpet:before {
  content: "\e012";
}
.icon-heater:before {
  content: "\e013";
}
.icon-personal-accident:before {
  content: "\e014";
}
.icon-bill:before {
  content: "\e015";
}
.icon-computer:before {
  content: "\e016";
}
.icon-money:before {
  content: "\e017";
}
.icon-shop:before {
  content: "\e018";
}
.icon-agency-casco:before {
  content: "\e019";
}
.icon-doctor:before {
  content: "\e01a";
}
.icon-tedavi:before {
  content: "\e01b";
}
.icon-bagaj:before {
  content: "\e01c";
}
.icon-mesaj:before {
  content: "\e01b";
}
.icon-tedavi:before {
  content: "\e01e";
}
.icon-corporate:before {
  content: "\e01d";
}
.icon-finance:before {
  content: "\e01f";
}
.icon-shop-insurance:before {
  content: "\e020";
}
.icon-back-in-time:before {
  content: "\e022";
}
.icon-files-o:before {
  content: "\e021";
}
.icon-tss-icon:before {
  content: "\e023";
}
.icon-futbol-o:before {
  content: "\e024";
}
.icon-traffic-tss:before {
  content: "\e025";
}
.icon-visa:before {
  content: "\e026";
}
.icon-bebek-kanseri:before {
  content: "\e027";
}
.icon-ferdi-kaza:before {
  content: "\e028";
}
.icon-kritik-hastalik:before {
  content: "\e029";
}
.icon-icon-error-1:before {
  content: "\e02a";
}
.icon-icon-success:before {
  content: "\e02b";
}
.icon-oksijen-plus:before {
  content: "\e02c";
}
.icon-super-yatarak-tss:before {
  content: "\e02d";
}
.icon-cekici-ikame-arac:before {
  content: "\e02e";
}
.icon-hasarsizlik-indirimi:before {
  content: "\e02f";
}
.icon-lastik-saklama:before {
  content: "\e030";
}
.icon-pesin-odeme-indirimi:before {
  content: "\e031";
}
.icon-fiyat-avantaji:before {
  content: "\e032";
}
.icon-eqo-kasko:before {
  content: "\e033";
}
.icon-hayat:before {
  content: "\e034";
}
.icon-garage:before {
  content: "\e035";
}




/* Z-INDEX */
 .formError { z-index: 990; }
    .formError .formErrorContent { z-index: 991; }
    .formError .formErrorArrow { z-index: 996; }

    .ui-dialog .formError { z-index: 5000; }
    .ui-dialog .formError .formErrorContent { z-index: 5001; }
    .ui-dialog .formError .formErrorArrow { z-index: 5006; }




.inputContainer {
	position: relative;
	float: left;
}

.formError {
	position: absolute;
	top: 300px;
	left: 300px;
	display: block;
	cursor: pointer;
	text-align: left;
}

.formError.inline {
	position: relative;
	top: 0;
	left: 0;
	display: inline-block;
}

.ajaxSubmit {
	padding: 20px;
	background: #55ea55;
	border: 1px solid #999;
	display: none;
}

.formError .formErrorContent {
	width: 100%;
	background: #ee0101;
	position:relative;
	color: #fff;
	min-width: 220px;
	font-size: 11px;
	border: 2px solid #ddd;
	box-shadow: 0 0 6px #000;
	-moz-box-shadow: 0 0 6px #000;
	-webkit-box-shadow: 0 0 6px #000;
	-o-box-shadow: 0 0 6px #000;
	padding: 4px 10px 4px 10px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-o-border-radius: 6px;
}

.formError.inline .formErrorContent {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
}

.greenPopup .formErrorContent {
	background: #33be40;
}

.blackPopup .formErrorContent {
	background: #393939;
	color: #FFF;
}

.formError .formErrorArrow {
	width: 15px;
	margin: -2px 0 0 13px;
	position:relative;
}
body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
	margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	margin: 0px 0 0 12px;
	top:2px;
}

.formError .formErrorArrow div {
	border-left: 2px solid #ddd;
	border-right: 2px solid #ddd;
	box-shadow: 0 2px 3px #444;
	-moz-box-shadow: 0 2px 3px #444;
	-webkit-box-shadow: 0 2px 3px #444;
	-o-box-shadow: 0 2px 3px #444;
	font-size: 0px;
	height: 1px;
	background: #ee0101;
	margin: 0 auto;
	line-height: 0;
	font-size: 0;
	display: block;
}

.formError .formErrorArrowBottom div {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
	background: #33be40;
}

.blackPopup .formErrorArrow div {
	background: #393939;
	color: #FFF;
}

.formError .formErrorArrow .line10 {
	width: 15px;
	border: none;
}

.formError .formErrorArrow .line9 {
	width: 13px;
	border: none;
}

.formError .formErrorArrow .line8 {
	width: 11px;
}

.formError .formErrorArrow .line7 {
	width: 9px;
}

.formError .formErrorArrow .line6 {
	width: 7px;
}

.formError .formErrorArrow .line5 {
	width: 5px;
}

.formError .formErrorArrow .line4 {
	width: 3px;
}

.formError .formErrorArrow .line3 {
	width: 1px;
	border-left: 2px solid #ddd;
	border-right: 2px solid #ddd;
	border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
	width: 3px;
	border: none;
	background: #ddd;
}

.formError .formErrorArrow .line1 {
	width: 1px;
	border: none;
	background: #ddd;
}

  .ifrPayment3D, .ifrPayment3DTst {
    min-height:550px;
    height:auto;
    margin: 0px auto;
    display: block;
    min-width: 600px;
    width: auto;
  }

@media (max-width: 768px) {
  .ifrPayment3D, .ifrPayment3DTst {
    min-height:550px;
    height:auto;
    margin: 0px auto;
    display: block;
    min-width: auto;
    width: auto;
  }
}

.displayNoneImport {
    display: none !important;
}

.sfsBorderBottom {
    border-bottom: 0.1em solid #f7f7f7;
    margin-bottom: 15px !important;
}

.policy-info-box {
    margin-bottom: 5px;
    border-bottom: 0.05em solid #d4d2d2;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding-top:5px;
}

.policy-info-box:hover {
    margin-bottom: 5px;
    border-bottom: 0.05em solid #d4d2d2;
    border-top: 0.05em solid #d4d2d2;
    background-color: #eaeaea;
}

.sfs-pull-right {
    float: right !important;
}

.sfs-pull-left {
    float: left !important;
}

.sfs-py1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.sfs-px1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.sfs-my1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.sfs-mx1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.pl-40px {
    padding-left: 40px !important;
}

.label-payment-header {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #121212 !important;
    font-family: "Raleway", sans-serif !important;
}

.fw-400 {
    font-weight: 400 !important;
}

/*#TravelTabs {
    display: none !important;
}*/
