/* Theme base styles */


.header-button{
  display: none !important;
}
/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --gap: 2.127659574%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
    line-height: 1.4;
    overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
    line-break: strict;
    overflow-wrap: normal;
    word-break: break-all;
}

/* Paragraphs */

p {
    margin: 0 0 1.4rem;
    letter-spacing: 0.02em;
    line-height: 164%;
}

/* Anchors */

a {
    cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.4rem;
    letter-spacing: 0.02em;
    line-height: 120%;
}

/* Lists */

ul,
ol {
    margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin: 0;
}

ul.no-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

/* Code blocks */

pre {
    overflow: auto;
}

code {
    vertical-align: bottom;
}

/* Blockquotes */

blockquote {
    border-left: 2px solid;
    margin: 0 0 1.4rem;
    padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
    border: none;
    border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
    font-size: 0.583rem;
    word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
    margin-bottom: 20px;
}

/* Labels */

form label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    display: flex;
}

/* Help text */

form legend {
    font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
    display: inline-block;
    font-size: 0.875rem;
    padding: 0.7rem;
    width: 100%;
}

form textarea {
    resize: vertical;
}

form fieldset {
    max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

form .inputs-list > li {
    display: block;
    margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
    vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
    cursor: pointer;
    margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
    position: relative;
}

.input {
    position: relative;
}

.hs-dateinput:before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(https://21305817.fs1.hubspotusercontent-na1.net/hubfs/21305817/DealNews2022/Images/Calendar.svg);
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
    background-size: contain;
}

.hs-TICKET\.coupon_end_time__pst_.hs-form-field .input:before,
.hs-TICKET\.coupon_start_time__pst_.hs-form-field .input:before{
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(https://21305817.fs1.hubspotusercontent-na1.net/hubfs/21305817/DealNews2022/Images/Clock.svg);
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
    background-size: contain;
}

.fn-date-picker .pika-table thead th {
    color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
    border-radius: 0;
    box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
    border-radius: 0 !important;
    color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
    background-color: transparent;
    border: initial;
    padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
    font-size: 0.875rem;
    margin: 0 0 1.4rem;
}

form .hs-richtext img {
    max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
    margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
    color: #EF6B51;
}

.hs-input.invalid.error {
    border-color: #EF6B51;
}

.hs-error-msg {
    color: #EF6B51;
    margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.15s linear;
    white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
    margin: 0 auto;
}

form label>span {
    order: 2;
}

form label>span.hs-form-required {
    order: 1;
}

.hs-form-required {
    color: #EB5757;
    margin-right: 5px;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
    padding: 0;
}

.header {
    padding: 22px 0;
    position: relative;
    width: 100%;
}

.header-right-bg {
    position: absolute;
    top: 0;
    right: 0;
}
/* Header container */

.header__container_inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin: 0 -15px;
}

.header__container_inner>div {
    padding: 0 15px;
}

.header__column {
    align-items: center;
    display: flex;
    justify-content: end;
}

.header-button {
    padding-left: 15px;
}

.header-button a {
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
    padding: 7px 52px;
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    transition: all 0.3s ease;
}

.header-button a:hover {
    font-weight: 600;
}


@media (max-width: 1150px) and (min-width: 767px) {
    .header__column {
        width: 100%;
    }
}


/* Navigation skipper */

.header__skip {
    height: 1px;
    left: -1000px;
    overflow: hidden;
    position: absolute;
    text-align: left;
    top: -1000px;
    width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
    height: auto;
    left: 0;
    overflow: visible;
    top: 0;
    width: auto;
}

/* Logo */

.header__logo {
    max-width: 155px;
    width: 100%;
}

.header__logo img {
    max-width: 100%;
}


.header__column .hs-menu-wrapper> ul > li> a {
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    display: block;
    padding: 5px 35px;
}

.header_search {
    max-width: 33.33%;
    width: 100%;
}

.search-wrap {
    position: relative;
}

.search-wrap span.search-icon {
    position: absolute;
    top: 5px;
    left: 19px;
}

.header_search input[type=text] {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    outline: none;
    padding: 8px 19px 8px 51px;
    width: 100%;
}

.header_search input::placeholder {
    color: #fff;
}

.header-menu .hs-menu-children-wrapper {
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    padding: 21px 20px;
    top: 40px !important;
}

.header-menu .hs-menu-children-wrapper:before {
    content: "";
    width: 100%;
    height: 15px;
    display: block;
    top: -13px;
    position: absolute;
    left: 0;
    cursor: pointer;
}

.header-menu .hs-menu-children-wrapper li:not(:last-child) {
    margin-bottom: 22px;
}

.header-menu .hs-menu-children-wrapper li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    transition: all 0.3s ease;
}

body.popup-active {
    overflow-y: hidden;
}

.deal-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: 100vh;
    overflow-y: auto;
    padding: 100px 0;
}

.deal-form-wrapper.form-active {
    opacity: 1;
    visibility: visible;
}

.deal-form {
    background: #FFFFFF;
    border-top: 4px solid #82CA9C;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    padding: 56px 64px;
    position: relative;
}

.deal-form-wrapper .content-wrapper {
    max-width: 941px;
}

.deal-form .form-title {
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.deal-form form .hs-input {
    background: #fff;
    border: 1px solid #72a1d5;
    border-radius: 4px;
    outline: none;
    padding: 7px 15px;
    color: #214b82;
}

.deal-form form .hs-richtext h5 {
    font-weight: 700;
    color: #214B82;
    letter-spacing: 0.01em;
    line-height: 120%;
    margin-bottom: 20px;
}

.deal-form form .hs-richtext {
    margin-bottom: 0;
}

.deal-form form .hs_TICKET\.coupon_start_date.hs-form-field,
.deal-form form .hs_TICKET\.coupon_start_time__pst_.hs-form-field,
.deal-form form .hs_TICKET\.coupon_end_date.hs-form-field,
.deal-form form .hs_TICKET\.coupon_end_time__pst_.hs-form-field{
    max-width: 305px;
}

.deal-form form .hs-button, 
.deal-form form input[type=submit],
.deal-form .back-btn button{
    letter-spacing: 0.01em;
    line-height: 100%;
}

.deal-form form .hs-button, 
.deal-form form input[type=submit]{
    position: relative;
    z-index: 9;
}

.deal-form form .actions {
    text-align: center;
}
.deal-form-wrapper .button.close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  border: 0;
}

/* .deal-form .back-btn button:hover,
.deal-form .back-btn button:focus{
    background-color: #1a334e;
    border-color: #1a334e;
} */

.deal-form-wrapper.no-credits .back-btn {
  display: none;
}
.deal-form .back-btn {
    position: absolute;
    bottom: 56px;
    left: -163px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 1200px){
    .header__column .hs-menu-wrapper>ul>li>a {
        padding: 5px 25px;
    }

    .header-button a {
        padding: 7px 30px;
    }

    .header__column .hs-menu-wrapper>ul>li:first-child>a {
        padding-left: 0;
    }

}
@media (min-width: 992px){
    .header_menu_toggle,
    .header__container_inner.mobile-menu,
    .mchild-trigger {
        display: none;
    }

}
@media (max-width: 991px){
    .header__column,
    .header__container_inner.desktop-menu {
        display: none;
    }

    .mob-header-right {
        display: flex;
        justify-content: flex-end;
    }

    .header_search {
        max-width: 100%;
        padding-right: 20px;
    }

    .atbs-flexbox-header-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobiletrigger {
        align-items: center;
        border-radius: 100px;
        display: flex;
        flex-direction: column-reverse;
        height: 40px;
        justify-content: center;
        width: 40px;
    }

    .mobiletrigger i {
        border-bottom: 2px solid #fff;
        display: block;
        transition: all .3s ease;
        width: 25px;
    }

    .mobiletrigger i.second {
        margin: 7px 0;
    }

    .menu-active .mobiletrigger{
        background: #fff;
        border-radius: 100px;
    }

    .menu-active .mobiletrigger i.line {
        transform: rotate(45deg);
        border-color: #2c65af;
    }

    .menu-active .mobiletrigger i.line.first {
        margin-top: -2px;
        transform: rotate(-45deg);
    }

    .menu-active .mobiletrigger i.line.second {
        display: none;
    }

    .header__column {
        width: 100%;
        display: block;
        position: absolute;
        top: 63px;
        right: 0;
        background: #2c65af;
        display: none;
    }

    .header__column.mobile_header_col {
        padding: 20px;
    }

    .header-menu .hs-menu-wrapper ul {
        flex-direction: column;
    }

    .header__column .hs-menu-wrapper>ul>li>a {
        padding: 10px 0px;
    }

    .header__column .hs-menu-wrapper>ul>li:first-child>a {
        padding-left: 0;
    }

    .header__column .hs-menu-wrapper>ul>li {
        margin-bottom: 15px;
    }

    .header__container_inner {
        margin: 0;
    }

    .header__container_inner>div {
        padding: 0 20px;
    }

    .header__logo {
        max-width: 40%;
    }

    .mob-header-right {
        max-width: 60%;
    }

    .header__container.content-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .header-button {
        padding-left: 0;
        padding-top: 10px;
    }

    .header {
        padding: 17px 0;
    }

    .header-menu .hs-menu-children-wrapper {
        position: static !important;
        opacity: 1 !important;
        display: none;
    }

    .mchild-trigger {
        align-items: flex-start;
        cursor: pointer;
        display: flex;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        color: #fff;
    }

    .mchild-trigger svg {
        fill: #fff;
        width: 25px;
        height: 43px;
        transition: all .3s ease;
    }

    .mchild-trigger.child-open svg {
        transform: rotate(180deg);
    }

    .header-button a {
        padding: 10px 40px;
    }
}
@media (min-width: 768px){
    .header_search.mobile_header_search {
        display: none;
    }

}
@media (max-width: 767px){
    .header_search.mobile_header_search {
        margin-top: 30px;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .mob-header-right > .header_search {
        display: none;
    }

    .header__logo {
        max-width: 155px;
    }

    .mob-header-right {
        max-width: 100%;
    }

    .header-right-bg {
        display: none;
    }

    .header {
        background: #2c65af !important;
    }

    .header__column {
        background: #2c65af;
        border-top: 1px solid #fff;
        top: 58px;
    }

    .deal-form form .hs_TICKET\.coupon_start_date.hs-form-field,
    .deal-form form .hs_TICKET\.coupon_start_time__pst_.hs-form-field,
    .deal-form form .hs_TICKET\.coupon_end_date.hs-form-field,
    .deal-form form .hs_TICKET\.coupon_end_time__pst_.hs-form-field{
        max-width: 100%;
    }

    .deal-form form .actions {
        padding-left: 70px;
    }

    .deal-form .back-btn {
        left: -92px;
    }
}

@media (max-width: 479px){
    .deal-form {
        padding: 50px 30px;
    }

    .deal-form .back-btn {
        bottom: 50px;
    }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}





/*============= Flex Classes ===================*/
.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.justify-bw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/*============= Width ===== ====================*/
.width-100 {
    width: 100%;
}

/*============= Margin Bottom ==================*/
.white{
    color:#fff;
}
.text-center {
    text-align: center;
}

/*============= Margin Bottom ==================*/
.mt-0{
    margin-top: 0px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}
.mt-30 {
    margin-top: 25px;
}
.mt-50 {
    margin-top: 50px;
}
/*============= Margin Bottom ==================*/
.mb-0{
    margin-bottom: 0px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-30 {
    margin-bottom: 25px;
}
.mb-50 {
    margin-bottom: 50px;
}
/*============= Margin Left ====================*/
.ml-20 {
    margin-left: 20px;
}




/*============== Details page =================== */
.edit-deal {
    background: #FFFFFF;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    padding: 27px 45px;
}
.edit-deal h2 {
    color: #214B82;
    margin: 0 0 30px;
}
.buttons .button {
    padding: 12px 10px;
    background: #2C65AF;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 15px;
    letter-spacing: 0.01em;
    text-align: center;
}
.buttons .button:hover {
    font-weight: 900;
}
.view-data {
    padding: 8px 16px;
    background: #EFF0F3;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: 0.02em;
    color: #214B82;
}
.view-data label {
    display: block;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 800;
    line-height: 33px;
    letter-spacing: 0.02em;
}
.edit-deal .row-fluid {
    margin-bottom: 30px;
}

.edit-deal.right {
    border-top: 4px solid #82CA9C;
    padding: 56px;
}

.message-title {
    letter-spacing: 0.01em;
    color: #214B82;
    font-weight: 600;
    margin-bottom: 32px;
}

.message-textarea label {
    font-weight: 700;
    margin-bottom: 16px;
}

.message-textarea textarea {
    border: 1px solid #72A1D5;
    border-radius: 4px;
    background: #FFFFFF;
    color: #214B82;
    letter-spacing: 0.01em;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    padding: 20px;
    resize: none;
    outline: none;
}

.message-textarea ::placeholder, .message-textarea ::-webkit-input-placeholder {
    color: #214B82;
}

.message-button {
    text-align: center;
    margin: 32px 0 0;
}

.message-button button {
    padding: 16px 40px;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-align: center;
}

.popup-form {
    box-shadow: 2px 2px 20px rgb(0 0 0 / 20%);
    padding: 20px;
    border-radius: 10px;
}
.popup-form fieldset {
    border: 0;
    padding:0;
    font-weight: 800;
}
.popup-form .form-control {
    border: 1px solid #214b82;
    color:#214b82;
}
.popup-form label{
}
.popup-form fieldset legend {
    display: block;
    margin: 0 0 15px;
}
.popup-form .row-fluid {
    margin-bottom: 20px;
}
.popup-form {
    border-radius: 0;
    box-shadow: 2px 2px 20px rgba(0,0,0,.2);
    padding: 20px;
    position: fixed;
    background: rgba(0, 0, 0, .5);
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
}
.popup-form #updateDeal {
    background: #fff;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    height: 95vh;
    overflow-y: scroll;
    padding: 30px 20px;
}
body.open .popup-form {
    opacity: 1;
    visibility: visible;
}
.buttons-wrap {
    text-align: center;
}
.buttons-wrap button {
    font-size: 15px;
}

.message-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: normal;
}

.message-content {
    font-size: 14px;
    line-height: normal;
}

.message-item {
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.message-content p {
    margin: 0;
}

.message-item:last-child {
    border-bottom: none;
}

.message-date {
    font-size: 14px;
}
.edit-deal .button-disable .button {
    background: #E0E0E0;
    border-color: #E0E0E0;
    pointer-events: none;
}

@media (max-width: 767px){
    .edit-deal {
        padding-left: 30px;
        padding-right: 30px;
    }

    .edit-deal.right {
        margin-top: 50px;
        padding: 40px 30px;
    }
}