:root {
  /* START Var COLORS  */
  /* bg color */
  --color-primary--medium: #ff7d02;
  --bg-color-white: #fff;
  --bg-color-orange: #ff7d02;
  --bg-gray-light: #f6f6f6;
  /* text color */
  --color-text-black: #161616;
  --color-text-dark: #545454;
  --color-text-medium: #7E7E7E;
  /* Links colors */
  --color-link-secondary: #06c;
  /* border color */
  --border-gray-base: #ddd;
  --border-gray-light: #eeeff5;
  /* forms colors */
  --forms-disabled-color: #b3b3b3;
  --input-border-error: #FFABAB;
  --input-border-focus: #A9DAFF;
  --input-blue-label: #219FFF;
  --input-color-error: #EC3333;
  --input-color-warning: #F7B500;
  --input-color-success: #15A831;
  /* END Var COLORS  */
}

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

h1,
h2,
h3,
h4,
h5,
h6,
figure,
ul,
ol,
p,
blockquote,
dd,
button {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

video,
iframe {
  max-width: 100%;
  display: block;
}

img {
  max-width: 100%;
}

body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.hidden {
  display: none !important;
}

:root {
  /* START Var COLORS  */
  /* bg color */
  --color-primary--medium: #ff7d02;
  --bg-color-white: #fff;
  --bg-color-orange: #ff7d02;
  --bg-gray-light: #f6f6f6;
  /* text color */
  --color-text-black: #161616;
  --color-text-dark: #545454;
  --color-text-medium: #7E7E7E;
  /* Links colors */
  --color-link-secondary: #06c;
  /* border color */
  --border-gray-base: #ddd;
  --border-gray-light: #eeeff5;
  /* forms colors */
  --forms-disabled-color: #b3b3b3;
  --input-border-error: #FFABAB;
  --input-border-focus: #A9DAFF;
  --input-blue-label: #219FFF;
  --input-color-error: #EC3333;
  --input-color-warning: #F7B500;
  --input-color-success: #15A831;
  /* END Var COLORS  */
}

input[type=text],
input[type=email],
textarea {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  font-size: 15px;
  line-height: normal;
  background-color: #fff;
  box-sizing: inherit;
  height: auto;
  padding: 5px;
  border: 1px solid var(--border-gray-base);
  border-radius: 3px;
  outline: none;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: unset;
  transition: all 0.3s ease-out;
}

.button-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* basic links styles */
.plain-link-secondary {
  color: var(--color-link-secondary);
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
}
.plain-link-secondary:hover {
  text-decoration: underline;
}

.plain-cta {
  color: var(--input-blue-label);
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
}
.plain-cta:hover {
  text-decoration: underline;
}

/* basic links styles */
/* CSS for basic solid button */
.ctv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  max-width: 100%;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  word-break: break-word;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  background-color: var(--bg-color-orange);
  color: #fff;
  font-size: 15px;
  padding: 11px 22px;
  outline: 0;
  border: 1px solid transparent;
}
.ctv-button.outline {
  color: var(--bg-color-orange);
  background-color: #fff;
  border: 1px solid var(--bg-color-orange);
}
.ctv-button:focus {
  outline: 0;
}
.ctv-button:active, .ctv-button:hover {
  opacity: 0.85;
}
.ctv-button[disabled], .ctv-button.disabled {
  box-shadow: none;
  opacity: unset;
  background-color: var(--border-gray-base);
  cursor: default;
}

/* CSS for basic solid button */
/* forms basic HTML no JS */
/*------------------------------------------------------------*/
/*						ctv-input-field                       */
/*------------------------------------------------------------*/
.ctv-input-field {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 0 100%;
  margin-bottom: 5px;
}
.ctv-input-field.error {
  /* show msg error */
}
.ctv-input-field.error input:not([type]),
.ctv-input-field.error input[type=text],
.ctv-input-field.error input[type=password],
.ctv-input-field.error input[type=email],
.ctv-input-field.error input[type=url],
.ctv-input-field.error input[type=time],
.ctv-input-field.error input[type=date],
.ctv-input-field.error input[type=datetime],
.ctv-input-field.error input[type=datetime-local],
.ctv-input-field.error input[type=tel],
.ctv-input-field.error input[type=number],
.ctv-input-field.error input[type=search],
.ctv-input-field.error textarea {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0 2px var(--input-color-error);
  box-shadow: 0 0 0 2px var(--input-color-error);
}
.ctv-input-field.error select {
  border: 1px solid var(--input-color-error);
}
.ctv-input-field.error .error {
  visibility: visible;
}
.ctv-input-field.error .character-counter {
  display: none;
}
.ctv-input-field.select-field:after {
  content: "";
  right: 15px;
  position: absolute;
  top: 38px;
  pointer-events: none;
  display: block;
  width: 9px;
  line-height: 1;
  height: 9px;
  border-top: 2px solid transparent;
  border-right: 2px solid var(--color-text-dark);
  border-bottom: 2px solid var(--color-text-dark);
  border-left: 2px solid transparent;
  transform: rotate(45deg);
  border-radius: 0px 2px 1px 2px;
}
.ctv-input-field.select-field.disabled:after {
  border-right: 2px solid var(--forms-disabled-color);
  border-bottom: 2px solid var(--forms-disabled-color);
}
.ctv-input-field select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 5px 27px 5px 15px;
  border: 1px solid var(--border-gray-base);
  border-radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  font-size: 15px;
  color: var(--color-text-dark);
  position: relative;
  min-height: 38px;
}
.ctv-input-field select:not(.disabled) {
  cursor: pointer;
  background-color: #fff;
}
.ctv-input-field select.disabled {
  cursor: not-allowed;
  color: var(--forms-disabled-color);
  background-color: #f1f1f1;
}
.ctv-input-field select.disabled:hover, .ctv-input-field select.disabled:active {
  border: 1px solid var(--border-gray-light);
}
.ctv-input-field select:hover {
  border: 1px solid var(--input-border-focus);
}
.ctv-input-field select:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--input-border-focus);
}
.ctv-input-field label {
  position: relative;
  align-self: flex-start;
  order: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-medium);
  padding: 3px 5px;
  transition: all 0.3s ease-out;
  text-align: left;
}
.ctv-input-field label i {
  vertical-align: middle;
}
.ctv-input-field ::-moz-placeholder {
  color: var(--color-text-medium);
}
.ctv-input-field ::-webkit-input-placeholder {
  color: var(--color-text-medium);
}
.ctv-input-field ::placeholder {
  color: var(--color-text-medium);
}
.ctv-input-field input:not([type]),
.ctv-input-field input[type=text],
.ctv-input-field input[type=password],
.ctv-input-field input[type=email],
.ctv-input-field input[type=url],
.ctv-input-field input[type=time],
.ctv-input-field input[type=date],
.ctv-input-field input[type=datetime],
.ctv-input-field input[type=amount],
.ctv-input-field input[type=datetime-local],
.ctv-input-field input[type=tel],
.ctv-input-field input[type=number],
.ctv-input-field input[type=search],
.ctv-input-field textarea {
  order: 1;
  width: 100%;
  /* TK: Matteo - CTBT-1355 */
  font-size: 15px;
  background-color: #fff;
  box-sizing: inherit;
  height: auto;
  padding: 5px;
  border: 1px solid var(--border-gray-base);
  border-radius: 3px;
  outline: none;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: unset;
  transition: all 0.3s ease-out;
  line-height: normal;
}
.ctv-input-field input:not([type]):focus:not([readonly]),
.ctv-input-field input[type=text]:focus:not([readonly]),
.ctv-input-field input[type=password]:focus:not([readonly]),
.ctv-input-field input[type=email]:focus:not([readonly]),
.ctv-input-field input[type=url]:focus:not([readonly]),
.ctv-input-field input[type=time]:focus:not([readonly]),
.ctv-input-field input[type=date]:focus:not([readonly]),
.ctv-input-field input[type=datetime]:focus:not([readonly]),
.ctv-input-field input[type=amount]:focus:not([readonly]),
.ctv-input-field input[type=datetime-local]:focus:not([readonly]),
.ctv-input-field input[type=tel]:focus:not([readonly]),
.ctv-input-field input[type=number]:focus:not([readonly]),
.ctv-input-field input[type=search]:focus:not([readonly]),
.ctv-input-field textarea:focus:not([readonly]) {
  border-color: transparent;
  box-shadow: 0 0 2px 1px var(--input-blue-label);
}
.ctv-input-field input:not([type]):focus:not([readonly]) ~ label,
.ctv-input-field input[type=text]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=password]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=email]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=url]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=time]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=date]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=datetime]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=amount]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=datetime-local]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=tel]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=number]:focus:not([readonly]) ~ label,
.ctv-input-field input[type=search]:focus:not([readonly]) ~ label,
.ctv-input-field textarea:focus:not([readonly]) ~ label {
  color: inherit;
}
.ctv-input-field input:not([type])[required] ~ label:after,
.ctv-input-field input[type=text][required] ~ label:after,
.ctv-input-field input[type=password][required] ~ label:after,
.ctv-input-field input[type=email][required] ~ label:after,
.ctv-input-field input[type=url][required] ~ label:after,
.ctv-input-field input[type=time][required] ~ label:after,
.ctv-input-field input[type=date][required] ~ label:after,
.ctv-input-field input[type=datetime][required] ~ label:after,
.ctv-input-field input[type=amount][required] ~ label:after,
.ctv-input-field input[type=datetime-local][required] ~ label:after,
.ctv-input-field input[type=tel][required] ~ label:after,
.ctv-input-field input[type=number][required] ~ label:after,
.ctv-input-field input[type=search][required] ~ label:after,
.ctv-input-field textarea[required] ~ label:after {
  content: "*";
  position: absolute;
  top: 2px;
  right: -2px;
  left: unset;
  opacity: 1;
}
.ctv-input-field input:not([type]):disabled,
.ctv-input-field input[type=text]:disabled,
.ctv-input-field input[type=password]:disabled,
.ctv-input-field input[type=email]:disabled,
.ctv-input-field input[type=url]:disabled,
.ctv-input-field input[type=time]:disabled,
.ctv-input-field input[type=date]:disabled,
.ctv-input-field input[type=datetime]:disabled,
.ctv-input-field input[type=amount]:disabled,
.ctv-input-field input[type=datetime-local]:disabled,
.ctv-input-field input[type=tel]:disabled,
.ctv-input-field input[type=number]:disabled,
.ctv-input-field input[type=search]:disabled,
.ctv-input-field textarea:disabled {
  color: var(--color-text-medium);
  border: 1px solid var(--border-gray-light);
  background-color: var(--bg-gray-light);
}
.ctv-input-field input:not([type]):disabled ~ label,
.ctv-input-field input[type=text]:disabled ~ label,
.ctv-input-field input[type=password]:disabled ~ label,
.ctv-input-field input[type=email]:disabled ~ label,
.ctv-input-field input[type=url]:disabled ~ label,
.ctv-input-field input[type=time]:disabled ~ label,
.ctv-input-field input[type=date]:disabled ~ label,
.ctv-input-field input[type=datetime]:disabled ~ label,
.ctv-input-field input[type=amount]:disabled ~ label,
.ctv-input-field input[type=datetime-local]:disabled ~ label,
.ctv-input-field input[type=tel]:disabled ~ label,
.ctv-input-field input[type=number]:disabled ~ label,
.ctv-input-field input[type=search]:disabled ~ label,
.ctv-input-field textarea:disabled ~ label {
  cursor: auto;
  color: var(--color-text-medium);
}
.ctv-input-field input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ctv-input-field input[type=radio] + label {
  position: relative;
  cursor: pointer;
  transition: 0.28s ease;
}
.ctv-input-field input[type=radio] + label::before, .ctv-input-field input[type=radio] + label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  z-index: 0;
  transition: 0.28s ease;
  border-radius: 50%;
}
.ctv-input-field input[type=radio] + label::before {
  border: 1px solid var(--border-gray-base);
}
.ctv-input-field input[type=radio] + label::after {
  background-color: var(--color-primary--medium);
  transform: scale(0);
}
.ctv-input-field input[type=radio]:checked + label::before {
  border-color: var(--color-primary--medium);
}
.ctv-input-field input[type=radio]:checked + label::after {
  transform: scale(0.6);
}
.ctv-input-field input[type=radio]:disabled + label {
  cursor: auto;
}
.ctv-input-field input[type=radio]:disabled + label::before {
  border-color: var(--forms-disabled-color);
  opacity: 0.3;
}
.ctv-input-field input[type=radio]:disabled + label::after {
  background-color: var(--forms-disabled-color);
  opacity: 0.5;
}
.ctv-input-field input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ctv-input-field input[type=checkbox] + label {
  position: relative;
  padding: 0 0 0 25px;
  margin-left: 2px;
  margin-bottom: 15px;
  cursor: pointer;
  display: inline-block;
  min-height: 25px;
  line-height: 25px;
  font-size: 15px;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.ctv-input-field input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 1px solid var(--color-text-medium);
  border-radius: 3px;
  margin-top: 2px;
  transition: 0.2s;
}
.ctv-input-field input[type=checkbox] + label:empty {
  padding: 0 0 0 21px;
}
.ctv-input-field input[type=checkbox]:disabled + label {
  cursor: auto;
  color: var(--forms-disabled-color);
}
.ctv-input-field input[type=checkbox]:disabled + label::before {
  border-color: var(--forms-disabled-color);
  opacity: 0.3;
}
.ctv-input-field input[type=checkbox]:checked + label::before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border: 3px solid transparent;
  border-right-color: var(--color-primary--medium);
  border-bottom-color: var(--color-primary--medium);
  border-radius: 1px;
  transform: rotate(40deg);
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}
.ctv-input-field input[type=checkbox]:checked:disabled + label::before {
  border-right-color: var(--forms-disabled-color);
  border-bottom-color: var(--forms-disabled-color);
  opacity: 0.5;
}
.ctv-input-field input[type=checkbox]:indeterminate + label::before {
  top: -11px;
  left: -12px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right-color: var(--color-primary--medium);
  border-bottom: none;
  border-radius: 1px;
  transform: rotate(90deg);
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}
.ctv-input-field input[type=checkbox]:indeterminate:disabled + label::before {
  border-right-color: var(--forms-disabled-color);
}
.ctv-input-field input[type=checkbox][required] ~ label:after {
  content: "*";
  position: relative;
  opacity: 1;
}
.ctv-input-field textarea {
  min-height: 90px;
  height: 90px;
  max-height: 90px;
  overflow-y: auto;
  resize: none;
}
.ctv-input-field .options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  order: 1;
  min-height: 30px;
}
.ctv-input-field .options.column {
  flex-direction: column;
  align-items: flex-start;
}
.ctv-input-field .options > div {
  display: flex;
  padding: 5px 0;
  flex-wrap: wrap;
}
.ctv-input-field .options > div:not(:last-child) {
  margin-right: 15px;
}
.ctv-input-field .options > div label {
  height: unset;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text-dark);
  padding: 0 0 0 27px;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.ctv-input-field .options > div > div {
  flex-direction: row;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.ctv-input-field .options > div input[type=checkbox]:not(:checked) ~ div,
.ctv-input-field .options > div input[type=radio]:not(:checked) ~ div {
  opacity: 0.75;
}
.ctv-input-field .options > div input[type=checkbox]:disabled ~ label,
.ctv-input-field .options > div input[type=radio]:disabled ~ label,
.ctv-input-field .options > div input[type=checkbox]:disabled ~ div,
.ctv-input-field .options > div input[type=radio]:disabled ~ div {
  color: var(--forms-disabled-color);
}
.ctv-input-field .error {
  order: 2;
  color: var(--input-color-error);
  font-size: 12px;
  text-align: right;
  height: 15px;
  margin: 2px 0;
  visibility: hidden;
  /* hide by default error placeholder */
}
.ctv-input-field .error.no-wrap {
  white-space: nowrap;
}
.ctv-input-field .error.checkbox-error {
  margin-top: -15px;
  text-align: left;
}
.ctv-input-field .character-counter {
  position: absolute;
  bottom: -3px;
  right: 5px;
  height: unset !important;
}

/*------------------------------------------------------------*/
/*							FORM ROW						  */
/*------------------------------------------------------------*/
.form-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}
.form-row > div {
  padding-left: 7px;
  padding-right: 7px;
}
.form-row > div:not(.ctv-input-field) {
  margin-bottom: 15px;
}

.ctv-input-field[tabindex],
.error[tabindex],
label[tabindex],
div[tabindex],
a[tabindex],
ul[tabindex] {
  outline: none;
}

/* forms basic HTML no JS */
ctv-legal-dialog .ctv-dialog-body > *:last-child:after {
  content: "";
  padding: 10px;
  display: block;
}
ctv-legal-dialog .ctv-dialog-body h2,
ctv-legal-dialog .ctv-dialog-body h3 {
  padding: 25px 0 5px;
  text-align: left;
}
ctv-legal-dialog .ctv-dialog-body p,
ctv-legal-dialog .ctv-dialog-body ul,
ctv-legal-dialog .ctv-dialog-body ol {
  text-align: left;
  line-height: 1.5;
  color: #545454;
  font-size: 15px;
}
ctv-legal-dialog .ctv-dialog-body a {
  color: #06c;
  word-break: break-all;
}
ctv-legal-dialog .ctv-dialog-body ul,
ctv-legal-dialog .ctv-dialog-body ol {
  padding-left: 30px;
}
ctv-legal-dialog .ctv-dialog-body li {
  display: list-item;
}
ctv-legal-dialog .ctv-dialog-body li ul,
ctv-legal-dialog .ctv-dialog-body li ol {
  padding-left: 15px;
}
ctv-legal-dialog .ctv-dialog-body ul li {
  list-style: disc;
}
ctv-legal-dialog .ctv-dialog-body table, ctv-legal-dialog .ctv-dialog-body th, ctv-legal-dialog .ctv-dialog-body td {
  border: 0px solid black;
  padding: 0;
}
.ctv-dialog-shadow {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctv-dialog-shadow .ctv-dialog-wrapper {
  background-color: white;
  position: relative;
  padding: 20px;
  min-width: 30%;
  margin: 5px;
  border-radius: 5px;
}
.ctv-dialog-shadow .ctv-dialog-wrapper .ctv-dialog-close {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  display: blocK;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.ctv-dialog-shadow .ctv-dialog-wrapper .ctv-dialog-header {
  text-align: center;
  font-size: 20px;
  margin: 5px 5px 15px 5px;
}
.ctv-dialog-shadow .ctv-dialog-wrapper .ctv-dialog-body {
  text-align: center;
}
.ctv-dialog-shadow .ctv-dialog-wrapper .ctv-dialog-footer {
  text-align: center;
  background-color: #fff;
  z-index: 1;
  border-radius: 0 0 5px 5px;
}
:root {
  /* START Var COLORS  */
  /* bg color */
  --color-primary--medium: #ff7d02;
  --bg-color-white: #fff;
  --bg-color-orange: #ff7d02;
  --bg-gray-light: #f6f6f6;
  /* text color */
  --color-text-black: #161616;
  --color-text-dark: #545454;
  --color-text-medium: #7E7E7E;
  /* Links colors */
  --color-link-secondary: #06c;
  /* border color */
  --border-gray-base: #ddd;
  --border-gray-light: #eeeff5;
  /* forms colors */
  --forms-disabled-color: #b3b3b3;
  --input-border-error: #FFABAB;
  --input-border-focus: #A9DAFF;
  --input-blue-label: #219FFF;
  --input-color-error: #EC3333;
  --input-color-warning: #F7B500;
  --input-color-success: #15A831;
  /* END Var COLORS  */
}

::-webkit-scrollbar {
  width: 10px;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.65);
}

::-webkit-scrollbar-track {
  border: none;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--border-gray-base);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #A4A4A4;
}

div.ctv-dialog-shadow.modal ctv-load-waiter {
  z-index: 5;
  top: 0;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal ctv-load-waiter {
    /* SM */
    top: 25px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper {
  max-width: 650px;
  width: 100%;
  padding: 0;
  margin: 0;
  height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-height: -webkit-fill-available;
  height: -webkit-fill-available;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper {
    /* SM */
    max-height: 700px;
    height: calc(100vh - 65px);
    min-height: 700px;
    margin: 5px;
    border-radius: 5px;
  }
}
@media screen and (max-height: 700px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper {
    min-height: auto;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-close {
  display: none;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-close {
    /* SM */
    top: 8px;
    right: 10px;
    display: block;
    z-index: 4;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header {
  height: 60px;
  min-height: 60px;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--border-gray-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header {
    /* SM */
    padding: 5px 0 0 0;
    height: 35px;
    border: 0;
    min-height: 40px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 15px;
  width: 36px;
  height: 36px;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container.arrow-back a.close {
  display: none;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container.arrow-close a.back {
  display: none;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container svg {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  color: var(--color-text-dark);
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container svg {
    /* SM */
    width: 20px;
    height: 20px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container span {
  display: none;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .arrow-container span {
    /* SM */
    font-size: 14px;
    color: var(--color-text-dark);
    display: inline-block;
    margin: 0 4px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .title {
    /* SM */
    font-size: 16px;
    color: white;
    text-overflow: ellipsis;
    overflow-wrap: normal;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-19px);
    background: var(--bg-color-orange);
    padding: 10px 35px 10px 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .title svg {
  display: none;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .title svg {
    /* SM */
    width: 24px;
    height: 24px;
    position: absolute;
    left: 10px;
    display: block;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .title span {
  max-width: calc(100vw - 125px);
  text-overflow: ellipsis;
  overflow-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .title span {
    /* SM */
    min-width: 180px;
    padding: 0 24px 0 24px;
    max-width: 220px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .help-container {
  width: 28px;
  height: 28px;
  margin-right: 15px;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .help-container {
    /* SM */
    margin-right: 36px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .help-container .help {
  width: 28px;
  height: 28px;
  display: flex;
  background-color: white;
  border: 1px solid var(--bg-color-orange);
  color: var(--bg-color-orange);
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  border-radius: 18px;
  cursor: help;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .help-container .help {
    /* SM */
    margin-right: 30px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-header .help-container .help.active {
  color: white;
  background-color: var(--bg-color-orange);
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-body {
  height: calc(100vh - 120px);
  overflow-y: scroll;
  padding: 0 13px 0 20px;
  /* styles for firefox*/
  scrollbar-color: #A4A4A4 #f6f6f6;
  scrollbar-width: thin;
  min-height: 0;
  max-height: 100%;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-body {
    /* SM */
    padding: 0 23px 0 30px;
    height: calc(100vh - 166px);
    max-height: 600px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer {
  min-height: 60px;
  height: 60px;
  border-top: 1px solid var(--border-gray-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer a {
  display: flex;
  align-items: center;
  color: var(--input-blue-label);
  font-size: 15px;
  text-decoration: none;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer a i {
  width: 24px;
  height: 24px;
  color: var(--input-blue-label);
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer a i svg {
  color: var(--input-blue-label);
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer a svg {
  margin-right: 8px;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer div {
  min-width: 160px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer div:first-child {
  justify-content: flex-start;
  padding-left: 15px;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer div:first-child {
    /* SM */
    padding-left: 25px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer div:last-child {
  justify-content: flex-end;
  padding-right: 15px;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer div:last-child {
    /* SM */
    padding-right: 30px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer div ctv-button button {
  min-width: 100px;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer button {
  margin-left: 15px;
  margin-right: 0;
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper div.ctv-dialog-footer button {
    /* SM */
    margin-left: 25px;
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper.expanded {
  max-height: none;
  min-height: 350px;
  /* if full width in big screens	
  @include media-lg {
  	max-width: 90vw;
  }*/
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper.expanded {
    /* SM */
    max-height: calc(100vh - 45px);
  }
}
@media screen and (min-width: 568px) {
  div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper.expanded div.ctv-dialog-body {
    /* SM */
    max-height: calc(100vh - 150px);
  }
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper.expanded div.ctv-dialog-body ctv-channel-info-dialog-step2 {
  max-width: 588px;
  margin: 0 auto;
  display: block;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper.expanded .ctv-dialog-submodal .ctv-dialog-shadow .ctv-dialog-wrapper {
  max-height: none;
  max-width: none;
  height: -webkit-fill-available;
}
div.ctv-dialog-shadow.modal div.ctv-dialog-wrapper.expanded .ctv-dialog-submodal .ctv-dialog-shadow .ctv-dialog-wrapper .ctv-dialog-body {
  max-height: none;
  height: 100%;
}
:root {
  /* START Var COLORS  */
  /* bg color */
  --color-primary--medium: #ff7d02;
  --bg-color-white: #fff;
  --bg-color-orange: #ff7d02;
  --bg-gray-light: #f6f6f6;
  /* text color */
  --color-text-black: #161616;
  --color-text-dark: #545454;
  --color-text-medium: #7E7E7E;
  /* Links colors */
  --color-link-secondary: #06c;
  /* border color */
  --border-gray-base: #ddd;
  --border-gray-light: #eeeff5;
  /* forms colors */
  --forms-disabled-color: #b3b3b3;
  --input-border-error: #FFABAB;
  --input-border-focus: #A9DAFF;
  --input-blue-label: #219FFF;
  --input-color-error: #EC3333;
  --input-color-warning: #F7B500;
  --input-color-success: #15A831;
  /* END Var COLORS  */
}
ctv-button {
  display: block;
}
ctv-button button {
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: var(--bg-color-white);
  background-color: var(--bg-color-orange);
  border: 1px solid var(--bg-color-orange);
  border-radius: 5px;
  padding: 10px 15px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
ctv-button button svg {
  width: 24px;
  height: 24px;
  display: flex;
  margin-right: 5px;
  color: inherit;
}
ctv-button button:hover {
  opacity: 0.8;
}
ctv-button button.sending {
  cursor: wait;
}
ctv-button button.sending:hover {
  opacity: 1;
}
ctv-button button.sending span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 4px;
  background-color: var(--bg-color-white);
  border-radius: 50%;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
}
ctv-button button.sending span:nth-child(1) {
  animation-name: scalingodd;
}
ctv-button button.sending span:nth-child(2) {
  animation-name: scalingeven;
}
ctv-button button.sending span:nth-child(3) {
  animation-name: scalingodd;
}
ctv-button button.error {
  color: var(--bg-color-white);
  background-color: var(--input-color-error);
  border-color: var(--input-color-error);
}
ctv-button button.semiactive {
  opacity: 0.65;
}
ctv-button button.semiactive:hover {
  opacity: 0.65;
}
ctv-button button.disabled {
  background-color: var(--border-gray-base);
  color: var(--bg-color-white);
  border-color: var(--border-gray-base);
  cursor: not-allowed;
}
ctv-button button.disabled:hover {
  opacity: 1;
}
ctv-button button.success {
  background-color: var(--input-color-success);
  color: var(--bg-color-white);
  border-color: var(--input-color-success);
}
ctv-button button.outline.active {
  background-color: var(--bg-color-white);
  color: var(--bg-color-orange);
  border-color: var(--bg-color-orange);
}
ctv-button button.outline.error {
  background-color: var(--bg-color-white);
  color: var(--input-color-error);
  border-color: var(--input-color-error);
}
ctv-button button.outline.sending {
  background-color: var(--bg-color-white);
  color: var(--bg-color-orange);
  border-color: var(--bg-color-orange);
}
ctv-button button.outline.sending span {
  background-color: var(--bg-color-orange);
}
ctv-button button.outline.semiactive {
  background-color: var(--bg-color-white);
  color: var(--bg-color-orange);
  border-color: var(--bg-color-orange);
}
ctv-button button.outline.disabled {
  color: var(--border-gray-base);
  background-color: var(--bg-color-white);
  border-color: var(--border-gray-base);
}
ctv-button button.outline.success {
  background-color: var(--bg-color-white);
  color: var(--input-color-success);
  border-color: var(--input-color-success);
}
ctv-button button.medium {
  font-size: 18px;
  padding: 10px 18px;
}
ctv-button button.medium span {
  display: inline-block;
  width: 16px;
  height: 16px;
}
ctv-button button.medium svg {
  width: 24px;
  height: 24px;
}
ctv-button button.big {
  font-size: 22px;
  padding: 10px 20px;
}
ctv-button button.big span {
  display: inline-block;
  width: 22px;
  height: 22px;
}
ctv-button button.big svg {
  width: 30px;
  height: 30px;
}
@keyframes scalingodd {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  25% {
    transform: scaleX(0.5) scaleY(0.5);
  }
  50% {
    transform: scaleX(1) scaleY(1);
  }
  75% {
    transform: scaleX(0.5) scaleY(0.5);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
@keyframes scalingeven {
  0% {
    transform: scaleX(0.5) scaleY(0.5);
  }
  25% {
    transform: scaleX(1) scaleY(1);
  }
  50% {
    transform: scaleX(0.5) scaleY(0.5);
  }
  75% {
    transform: scaleX(1) scaleY(1);
  }
  100% {
    transform: scaleX(0.5) scaleY(0.5);
  }
}
ctv-img {
  display: block;
}
ctv-img img {
  width: 100%;
}
ctv-img.forced-height img {
  height: 100%;
  object-fit: cover;
}
ctv-video {
  display: flex;
  position: relative;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  overflow: hidden;
  user-select: none;
  background-color: #000;
  --color-main: #ff7d02;
}
ctv-video.forced-height video {
  height: 100%;
  max-width: 100%;
  z-index: 0;
}
ctv-video:not(.controls):fullscreen {
  cursor: none;
}
ctv-video:not(.controls) .controls .progress.bottom-progress {
  visibility: visible;
}
ctv-video.controls .controls {
  transform: translateY(0);
}
ctv-video.controls .mobile-unmute {
  display: none;
}
ctv-video:fullscreen .controls, ctv-video:-webkit-full-screen .controls {
  padding: 20px;
}
ctv-video:fullscreen .controls .toggle-fullscreen .small, ctv-video:-webkit-full-screen .controls .toggle-fullscreen .small {
  display: flex;
}
ctv-video:fullscreen .controls .toggle-fullscreen .full, ctv-video:-webkit-full-screen .controls .toggle-fullscreen .full {
  display: none;
}
ctv-video *,
ctv-video ::before,
ctv-video ::after {
  box-sizing: border-box;
}
ctv-video .hidden {
  display: none !important;
}
ctv-video.mobile .big-play-pause:hover {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: #fff;
}
ctv-video.mobile:not(.controls) .big-play-pause:not(.paused) {
  display: none;
}
ctv-video .big-play-pause {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
  cursor: pointer;
}
ctv-video .big-play-pause:hover {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
ctv-video .big-play-pause .play svg,
ctv-video .big-play-pause .pause svg {
  width: 42px;
  height: 42px;
}
ctv-video .big-play-pause.paused .play {
  display: flex;
}
ctv-video .big-play-pause.paused .pause {
  display: none;
}
ctv-video .big-play-pause .play {
  display: none;
}
ctv-video .big-play-pause .pause {
  display: flex;
}
ctv-video .loader-area {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
ctv-video .loader-area .loader {
  position: relative;
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  margin: 0 auto;
}
ctv-video .loader-area .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}
ctv-video .loader-area .loader .circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
ctv-video .loader-area .loader .circular .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: butt;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%, 0% {
    stroke: rgba(204, 204, 204, 0.5);
  }
  40% {
    stroke: rgba(204, 204, 204, 0.5);
  }
  66% {
    stroke: rgba(204, 204, 204, 0.5);
  }
  80%, 90% {
    stroke: rgba(204, 204, 204, 0.5);
  }
}
ctv-video ctv-img {
  width: 100%;
  height: auto;
  display: block;
}
ctv-video .mobile-unmute {
  height: 35px;
  width: 35px;
  color: white;
  position: absolute;
  bottom: 28px;
  right: 15px;
  z-index: 1;
  border-radius: 50%;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 568px) {
  ctv-video .mobile-unmute {
    bottom: 5px;
    right: 5px;
  }
}
ctv-video video {
  width: 100%;
  height: auto;
}
ctv-video .controls {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 12px;
  align-items: center;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(89, 89, 89, 0), rgba(89, 89, 89, 0.5));
  padding: 13px 20px;
}
@media screen and (min-width: 568px) {
  ctv-video .controls {
    grid-column-gap: 10px;
    padding: 10px;
  }
}
ctv-video .controls > div {
  flex-shrink: 0;
}
ctv-video .controls svg {
  width: 22px;
  height: 22px;
  stroke: #000;
  stroke-opacity: 0.15;
  stroke-width: 1px;
}
ctv-video .controls .progress {
  position: relative;
  display: flex;
  flex-grow: 1;
}
ctv-video .controls .progress:not(.bottom-progress) {
  border-radius: 4px;
}
ctv-video .controls .progress.bottom-progress {
  position: absolute;
  top: -3px;
  left: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  visibility: hidden;
  width: 100%;
}
ctv-video .controls .progress.mobile {
  display: flex;
  flex-basis: 100%;
  width: 100%;
  margin-top: 7px;
}
@media screen and (min-width: 568px) {
  ctv-video .controls .progress.mobile {
    display: none;
  }
}
ctv-video .controls .progress.desktop {
  display: none;
}
@media screen and (min-width: 568px) {
  ctv-video .controls .progress.desktop {
    display: flex;
  }
}
ctv-video .controls .progress > input[type=range] {
  width: 100%;
  height: 4px;
  margin: 6px 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  -webkit-appearance: none;
  cursor: pointer;
}
ctv-video .controls .progress > input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background-color: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 2px;
  cursor: pointer;
  user-select: none;
  background-image: linear-gradient(90deg, var(--color-main) var(--value, 0), transparent var(--value, 0));
}
ctv-video .controls .progress > input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  background-color: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 2px;
  cursor: pointer;
  user-select: none;
  background-image: linear-gradient(90deg, var(--color-main) var(--value, 0), transparent var(--value, 0));
}
ctv-video .controls .progress > input[type=range]::-ms-track {
  width: 100%;
  height: 4px;
  background-color: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 2px;
  cursor: pointer;
  user-select: none;
  background-image: linear-gradient(90deg, var(--color-main) var(--value, 0), transparent var(--value, 0));
}
ctv-video .controls .progress > input[type=range]::-webkit-slider-thumb {
  margin-top: -6px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
}
@media screen and (min-width: 568px) {
  ctv-video .controls .progress > input[type=range]::-webkit-slider-thumb {
    margin-top: -4px;
    width: 12px;
    height: 12px;
  }
}
ctv-video .controls .progress > input[type=range]::-moz-range-thumb {
  margin-top: -6px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
}
@media screen and (min-width: 568px) {
  ctv-video .controls .progress > input[type=range]::-moz-range-thumb {
    margin-top: -4px;
    width: 12px;
    height: 12px;
  }
}
ctv-video .controls .progress > input[type=range]::-ms-thumb {
  margin-top: -6px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: 0;
}
@media screen and (min-width: 568px) {
  ctv-video .controls .progress > input[type=range]::-ms-thumb {
    margin-top: -4px;
    width: 12px;
    height: 12px;
  }
}
@media screen and (min-width: 568px) {
  ctv-video .controls .progress > input[type=range]::-ms-thumb {
    margin-top: 0;
  }
}
ctv-video .controls .progress > input[type=range]:focus {
  outline: none;
}
ctv-video .controls .progress > input[type=range]:focus::-ms-fill-lower {
  background-color: #fff;
}
ctv-video .controls .progress > input[type=range]:focus::-ms-fill-upper {
  background-color: #fff;
}
ctv-video .controls .progress > input[type=range]:hover ~ .time-tooltip {
  display: block;
}
ctv-video .controls .progress > input[type=range] + span.thumb {
  display: none;
}
ctv-video .controls .progress .time-tooltip {
  display: none;
  position: absolute;
  top: -33px;
  transform: translateX(-50%);
  font-size: 13px;
  background-color: #ebeaeb;
  color: #4A5464;
  padding: 5px 8px;
  border-radius: 3px;
}
ctv-video .controls .progress .progress-filled {
  width: 50%;
  background: var(--color-main);
  flex: 0;
  flex-basis: 0%;
  position: relative;
}
ctv-video .controls .button {
  cursor: pointer;
  color: #fff;
  text-align: center;
  max-width: 40px;
}
ctv-video .controls .toggle-play.active .play {
  display: flex;
}
ctv-video .controls .toggle-play.active .pause {
  display: none;
}
ctv-video .controls .toggle-play .play {
  display: none;
}
ctv-video .controls .toggle-play .pause {
  display: flex;
}
ctv-video .controls .timespan {
  flex-shrink: 0;
  max-width: unset;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 0 1px rgba(89, 89, 89, 0.7);
  pointer-events: none;
  cursor: default;
}
@media screen and (min-width: 568px) {
  ctv-video .controls .timespan {
    font-size: 12px;
  }
}
ctv-video .controls .toggle-fullscreen {
  margin-left: auto;
}
ctv-video .controls .toggle-fullscreen .small {
  display: none;
}
ctv-video .controls .toggle-fullscreen .full {
  display: flex;
}
@media screen and (min-width: 568px) {
  ctv-video .controls .toggle-mute {
    margin-right: 0;
  }
}
ctv-video .controls .toggle-mute.muted .unmute {
  display: flex;
}
ctv-video .controls .toggle-mute.muted .mute {
  display: none;
}
ctv-video .controls .toggle-mute .unmute {
  display: none;
}
ctv-video .controls .toggle-mute .mute {
  display: flex;
}
ctv-video .generic-error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  pointer-events: none;
}
ctv-video .generic-error p {
  max-width: 310px;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
}
@media screen and (min-width: 568px) {
  ctv-video .generic-error p {
    max-width: 470px;
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper {
  height: auto;
  min-height: auto;
  max-height: none;
  max-width: 480px;
  margin: 10px !important;
  border-radius: 5px !important;
  width: 100%;
}
@media screen and (min-width: 568px) {
  ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper {
    /* SM */
    height: auto;
    margin: auto !important;
  }
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-close {
  display: block !important;
  right: 12px;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-header {
  display: flex;
  justify-content: center;
  border: 0;
  font-weight: 600;
  color: var(--color-text-black);
  font-size: 20px;
  margin: 0;
}
@media screen and (min-width: 568px) {
  ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-header {
    /* SM */
    padding-top: 20px;
  }
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-header svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-body {
  height: auto;
  max-height: none;
  min-height: auto;
  font-size: 15px;
  color: var(--color-text-dark);
  padding: 15px 33px;
  line-height: 20px;
  text-align: left;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer {
  justify-content: space-around;
  border: 0;
  height: auto;
  min-height: 70px;
  flex-direction: column;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 568px) {
  ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer {
    /* SM */
    flex-direction: row;
  }
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-cancel,
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no,
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok {
  min-width: 130px;
  margin: 5px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 568px) {
  ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-cancel,
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no,
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok {
    /* SM */
    margin: 0;
  }
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-cancel {
  cursor: pointer;
  justify-content: center;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no {
  cursor: pointer;
  border: 1px solid var(--bg-color-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  max-width: 100%;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  word-break: break-word;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #fff;
  color: var(--bg-color-orange);
  font-size: 15px;
  padding: 11px 22px;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no:focus {
  opacity: 0.85;
  outline: none;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no:active, ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no:hover {
  opacity: 0.85;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no:active {
  box-shadow: 0px 0px 0px 1px white, 0px 0px 0px 2px var(--bg-color-orange);
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no[disabled], ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-no.disabled {
  box-shadow: none;
  opacity: unset;
  background-color: var(--border-gray-base);
  cursor: default;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok {
  cursor: pointer;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  max-width: 100%;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  word-break: break-word;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: var(--bg-color-orange);
  color: #fff;
  font-size: 15px;
  padding: 11px 22px;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok:focus {
  opacity: 0.85;
  outline: none;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok:active, ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok:hover {
  opacity: 0.85;
  border: 0;
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok:active {
  box-shadow: 0px 0px 0px 1px white, 0px 0px 0px 2px var(--bg-color-orange);
}
ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok[disabled], ctv-dialog-popup div.ctv-dialog-shadow div.ctv-dialog-wrapper div.ctv-dialog-footer .cta-ok.disabled {
  box-shadow: none;
  opacity: unset;
  background-color: var(--border-gray-base);
  cursor: default;
}

/*# sourceMappingURL=/marketing/public/main.b3af761b.css.map */