:root {
  --color-primary: #277bda;
  --color-primary-hover: #246fc4;
  --color-primary-dark: #196ac6;
  --color-primary-dark-hover: #1358a7;
  --color-white: #fff;
  --color-white-hover: rgb(241, 243, 244);
  --color-black: rgb(0, 0, 0);
  --color-cod-gray: rgb(15, 15, 15);
  --color-cod-gray-hover: rgb(45, 45, 45);
  --color-outer-space: rgb(58, 72, 80);
  --color-regent-gray: rgb(137, 149, 156);
  --color-regent-gray-hover: rgb(58, 72, 80);
  --color-tower-gray: rgb(176, 189, 197);
  --color-tower-gray-hover: rgb(137, 149, 156);
  --color-porcelain: rgb(231, 235, 237);
  --color-porcelain-hover: rgb(225, 225, 225);
  --gradient-primary: linear-gradient(
    90deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  --gradient-primary-hover: linear-gradient(
    90deg,
    var(--color-primary-dark-hover) 0%,
    var(--color-primary-dark) 100%
  );
}

a.dsmButton {
  color: var(--color-white);
  font-size: 16px;
  text-decoration: none;
}

.dsmButton {
  display: inline-flex;
  font-family: Roboto;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 100px;
  cursor: pointer;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid;
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  box-sizing: border-box;
  white-space: nowrap;
  height: 40px;
  padding: 6px 17px;
  font-size: 16px;
  text-transform: none;
}
@media (hover: hover) {
  .dsmButton:hover {
    background: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover);
  }
  .dsmButton:hover:not(.round) {
    background: var(--gradient-primary-hover) !important;
  }
  .dsmButton:hover.round, .dsmButton:hover:not(.round) {
    color: var(--color-white);
  }
  .dsmButton:hover .dsmButton-textsvg*[stroke]:not[stroke=""] {
    stroke: var(--color-white);
  }
  .dsmButton:hover .dsmButton-textsvg*[fill]:not[fill=""] {
    fill: var(--color-white);
  }
}
.dsmButton:not(.round) {
  background: var(--gradient-primary);
}
@media (hover: hover) {
  .dsmButton.round:hover, .dsmButton.ghost.round:hover {
    border-color: var(--color-primary-hover);
    background: var(--color-primary-hover) !important;
  }
  .dsmButton.round:hover.porcelain, .dsmButton.ghost.round:hover.porcelain {
    background: var(--color-porcelain-hover) !important;
    border-color: var(--color-porcelain-hover);
    color: var(--color-outer-space);
  }
  .dsmButton.round:hover.porcelain .dsmButton-textsvg*[stroke]:not[stroke=""], .dsmButton.ghost.round:hover.porcelain .dsmButton-textsvg*[stroke]:not[stroke=""] {
    stroke: var(--color-outer-space);
  }
  .dsmButton.round:hover.porcelain .dsmButton-textsvg*[fill]:not[fill=""], .dsmButton.ghost.round:hover.porcelain .dsmButton-textsvg*[fill]:not[fill=""] {
    fill: var(--color-outer-space);
  }
  .dsmButton.round:hover.regentGray, .dsmButton.round:hover.towerGray, .dsmButton.round:hover.codGray, .dsmButton.ghost.round:hover.regentGray, .dsmButton.ghost.round:hover.towerGray, .dsmButton.ghost.round:hover.codGray {
    color: var(--color-white);
  }
  .dsmButton.round:hover.regentGray, .dsmButton.ghost.round:hover.regentGray {
    background: var(--color-regent-gray-hover) !important;
    border-color: var(--color-regent-gray-hover);
  }
  .dsmButton.round:hover.towerGray, .dsmButton.ghost.round:hover.towerGray {
    background: var(--color-tower-gray-hover) !important;
    border-color: var(--color-tower-gray-hover);
  }
  .dsmButton.round:hover.codGray, .dsmButton.ghost.round:hover.codGray {
    background: var(--color-cod-gray-hover) !important;
    border-color: var(--color-cod-gray-hover);
  }
  .dsmButton.round:hover.white, .dsmButton.ghost.round:hover.white {
    background: var(--color-white) !important;
    border-color: var(--color-white);
    color: var(--color-outer-space);
  }
}
.dsmButton::before {
  content: "";
  position: absolute;
  background: var(--color-white);
  inset: -2px;
  z-index: 4;
  opacity: 0;
}
.dsmButton::before,
.dsmButton .dsmButton-click-effect {
  border-radius: 8px;
}
.dsmButton.round .dsmButton-click-effect {
  border-radius: 24px;
}
.dsmButton .dsmButton-click-effect {
  width: inherit;
  height: inherit;
  position: absolute;
  inset: -2px;
  z-index: 5;
  overflow: hidden;
}
.dsmButton .dsmButton-click-effect::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  border-radius: 50%;
  opacity: 0;
  width: 120%;
  aspect-ratio: 1/1;
  transition: transform 0.8s, opacity 0.8s;
  background: rgba(0, 0, 0, 0.15);
  z-index: 6;
}
.dsmButton.codGray .dsmButton-click-effect::after, .dsmButton.regentGray .dsmButton-click-effect::after {
  background: rgba(250, 250, 250, 0.15);
}
.dsmButton:active .dsmButton-click-effect::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0s;
}
.dsmButton:hover, .dsmButton:focus {
  text-decoration: none;
}
.dsmButton a {
  color: inherit !important;
  text-decoration: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.dsmButton .dsmButton-text {
  position: relative;
  z-index: 2;
}
.dsmButton > svg {
  width: 22px;
  height: 22px;
  transform-origin: center center;
  position: absolute;
  inset: 0px;
  margin: auto;
}
.dsmButton:disabled, .dsmButton.disabled {
  cursor: default;
  pointer-events: none;
}
.dsmButton:disabled::before, .dsmButton.disabled::before {
  opacity: 0.4;
}
.dsmButton.loading {
  cursor: default;
  pointer-events: none;
  background: var(--color-primary-hover);
}
.dsmButton.loading:not(.round) {
  background: var(--gradient-primary-hover) !important;
}
.dsmButton.loading.round {
  background: var(--color-primary-hover) !important;
}
.dsmButton.loading.round, .dsmButton.loading:not(.round) {
  border-color: var(--color-primary-hover);
}
.dsmButton.loading.porcelain svg path, .dsmButton.loading.white svg path {
  stroke: var(--color-outer-space);
}
.dsmButton.loading .dsmButton-text {
  display: none;
}
.dsmButton.ghost {
  background: transparent !important;
  color: var(--color-primary);
}
.dsmButton.ghost svg circle {
  stroke: var(--color-black);
  stroke-opacity: 0.25;
}
.dsmButton.ghost svg path {
  stroke: var(--color-white);
}
.dsmButton.ghost.round.porcelain {
  border-color: var(--color-porcelain);
  color: var(--color-porcelain);
}
.dsmButton.ghost.round.regentGray {
  color: var(--color-regent-gray);
  border-color: var(--color-regent-gray);
}
.dsmButton.ghost.round.towerGray {
  color: var(--color-tower-gray);
  border-color: var(--color-tower-gray);
}
.dsmButton.ghost.round.codGray {
  border-color: var(--color-cod-gray);
  color: var(--color-cod-gray);
}
.dsmButton.ghost.round.white {
  color: var(--color-white);
  border-color: var(--color-white);
}
.dsmButton.round {
  border-color: var(--color-primary);
  background: var(--color-primary);
  border-radius: 24px;
}
.dsmButton.round::before {
  border-radius: 24px;
}
@media (max-width: 768px) {
  .dsmButton.round {
    padding: 11px 20px;
  }
}
.dsmButton.round:disabled .dsmButton-text {
  display: block !important;
}
.dsmButton.round.regentGray {
  color: var(--color-white);
  background: var(--color-regent-gray);
  border-color: var(--color-regent-gray);
}
.dsmButton.round.regentGray.loading {
  background: var(--color-regent-gray-hover) !important;
  border-color: var(--color-regent-gray-hover);
}
.dsmButton.round.towerGray {
  color: var(--color-white);
  background: var(--color-tower-gray);
  border-color: var(--color-tower-gray);
}
.dsmButton.round.towerGray.loading {
  background: var(--color-tower-gray-hover) !important;
  border-color: var(--color-tower-gray-hover);
}
.dsmButton.round.codGray {
  color: var(--color-white);
  background: var(--color-cod-gray);
  border-color: var(--color-cod-gray);
}
.dsmButton.round.codGray.loading {
  background: var(--color-cod-gray-hover) !important;
  border-color: var(--color-cod-gray-hover);
}
.dsmButton.round.porcelain {
  color: var(--color-outer-space);
  background: var(--color-porcelain);
  border-color: var(--color-porcelain);
}
.dsmButton.round.porcelain.loading {
  background: var(--color-porcelain-hover) !important;
  border-color: var(--color-porcelain-hover);
}
.dsmButton.round.white {
  color: var(--color-outer-space);
  background: var(--color-white);
  border-color: var(--color-white);
}
.dsmButton.round.white.loading {
  background: var(--color-white) !important;
  border-color: var(--color-white);
}
.dsmButton:not(.round).extralarge {
  height: 70px;
  padding: 0 29px;
  font-size: 22px;
}
@media (max-width: 768px) {
  .dsmButton:not(.round) {
    height: 48px;
    padding: 0 21px;
  }
  .dsmButton:not(.round).large, .dsmButton:not(.round).extralarge, .dsmButton:not(.round).regular {
    height: 60px;
    padding: 0 21px;
    font-size: 20px;
  }
  .dsmButton:not(.round).small, .dsmButton:not(.round).medium {
    height: 48px;
    padding: 0 21px;
  }
}
.dsmButton.small {
  font-size: 14px;
  height: 32px;
  padding: 0 12px;
}
.dsmButton.small.round {
  padding: 9px 14px;
}
.dsmButton.small svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .dsmButton.small.round {
    padding: 8px 14px;
  }
}
.dsmButton.regular {
  height: 48px;
  padding: 0 18px;
  font-size: 18px;
}
.dsmButton.regular.round {
  padding: 10px 20px;
}
.dsmButton.regular svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 768px) {
  .dsmButton.regular.round {
    padding: 13px 23px;
  }
}
.dsmButton.medium {
  height: 40px;
  font-size: 16px;
}
.dsmButton.medium.round {
  padding: 6px 17px;
}
.dsmButton.medium:not(.round) {
  padding: 14px 16px;
}
.dsmButton.medium svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .dsmButton.medium.round {
    padding: 11px 20px;
  }
}
.dsmButton.large {
  height: 60px;
  font-size: 20px;
}
.dsmButton.large.round {
  padding: 0 24px;
  border-radius: 30px;
}
.dsmButton.large.round::before,
.dsmButton.large.round .dsmButton-click-effect {
  border-radius: 30px;
}
.dsmButton.large:not(.round) {
  padding: 19px 20px;
}
.dsmButton.large svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .dsmButton.large.round {
    padding: 17px 24px;
  }
  .dsmButton.large:not(.round) {
    padding: 17px 20px;
  }
}
@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

svg.dsmIcons {
  height: 16px;
  width: auto;
}

.dsmSlider {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.dsmSlider input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.dsmSlider input[type=checkbox]:checked + .slider {
  background-color: var(--color-primary);
}
.dsmSlider input[type=checkbox]:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}
.dsmSlider input[type=checkbox]:checked + .slider:before {
  transform: translateX(16px);
}
.dsmSlider input[type=checkbox]:disabled + .slider {
  cursor: default;
  background-color: #F1F1F1;
}
.dsmSlider .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #B0BDC5;
  -webkit-transition: 0.4s;
  border-radius: 34px;
  transition: 0.4s;
}
.dsmSlider .slider:before {
  position: absolute;
  content: "";
  border-radius: 50%;
  height: 16px;
  width: 16px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}

.dsmForm {
  font-family: Roboto;
}
.dsmForm textarea {
  resize: none;
  border: 1px solid rgb(216, 216, 216);
  border-radius: 4px;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  color: black;
  box-sizing: border-box;
  font-family: Roboto;
  transition: 0.2s border-color;
  font-size: 15px;
  background: var(--color-white);
}
.dsmForm textarea:focus {
  border-color: var(--color-primary);
}
.dsmForm textarea.error {
  color: #000;
  border: 1px solid rgb(210, 67, 30);
  background: rgb(255, 247, 247);
}
.dsmForm textarea::-moz-placeholder {
  color: rgb(107, 107, 107);
}
.dsmForm textarea::placeholder {
  color: rgb(107, 107, 107);
}
.dsmForm textarea:disabled {
  border-color: rgb(222, 222, 222);
  pointer-events: none;
}
.dsmForm textarea:disabled::-moz-placeholder {
  color: rgb(200, 200, 200);
}
.dsmForm textarea:disabled::placeholder {
  color: rgb(200, 200, 200);
}
.dsmForm textarea::-webkit-scrollbar {
  cursor: pointer;
  width: 16px;
}
.dsmForm textarea::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: rgb(231, 235, 237);
  border-radius: 16px;
  border: 5px solid var(--color-white);
}
.dsmForm textarea::-webkit-scrollbar-track {
  cursor: pointer;
  background: var(--color-white);
  border-radius: 16px;
}
.dsmForm .inputLabel {
  position: relative;
  color: rgb(107, 107, 107);
}
.dsmForm .inputLabel input[type=url]::-moz-placeholder, .dsmForm .inputLabel input[type=text]::-moz-placeholder, .dsmForm .inputLabel input[type=email]::-moz-placeholder, .dsmForm .inputLabel input[type=tel]::-moz-placeholder, .dsmForm .inputLabel input[type=number]::-moz-placeholder {
  opacity: 0;
  color: rgb(222, 222, 222);
}
.dsmForm .inputLabel input[type=url]::placeholder,
.dsmForm .inputLabel input[type=text]::placeholder,
.dsmForm .inputLabel input[type=email]::placeholder,
.dsmForm .inputLabel input[type=tel]::placeholder,
.dsmForm .inputLabel input[type=number]::placeholder {
  opacity: 0;
  color: rgb(222, 222, 222);
}
.dsmForm .inputLabel input[type=url],
.dsmForm .inputLabel input[type=text],
.dsmForm .inputLabel input[type=email],
.dsmForm .inputLabel input[type=tel],
.dsmForm .inputLabel input[type=number] {
  padding-top: 20px;
}
.dsmForm .inputLabel input[type=url].noLabel,
.dsmForm .inputLabel input[type=text].noLabel,
.dsmForm .inputLabel input[type=email].noLabel,
.dsmForm .inputLabel input[type=tel].noLabel,
.dsmForm .inputLabel input[type=number].noLabel {
  padding-top: 0;
  padding-bottom: 0;
  height: 48px;
}
.dsmForm .inputLabel input[type=url].noLabel::-moz-placeholder, .dsmForm .inputLabel input[type=text].noLabel::-moz-placeholder, .dsmForm .inputLabel input[type=email].noLabel::-moz-placeholder, .dsmForm .inputLabel input[type=tel].noLabel::-moz-placeholder, .dsmForm .inputLabel input[type=number].noLabel::-moz-placeholder {
  opacity: 1;
}
.dsmForm .inputLabel input[type=url].noLabel::placeholder,
.dsmForm .inputLabel input[type=text].noLabel::placeholder,
.dsmForm .inputLabel input[type=email].noLabel::placeholder,
.dsmForm .inputLabel input[type=tel].noLabel::placeholder,
.dsmForm .inputLabel input[type=number].noLabel::placeholder {
  opacity: 1;
}
.dsmForm .inputLabel input[type=url]:focus-within::-moz-placeholder, .dsmForm .inputLabel input[type=text]:focus-within::-moz-placeholder, .dsmForm .inputLabel input[type=email]:focus-within::-moz-placeholder, .dsmForm .inputLabel input[type=tel]:focus-within::-moz-placeholder, .dsmForm .inputLabel input[type=number]:focus-within::-moz-placeholder {
  opacity: 1;
}
.dsmForm .inputLabel input[type=url]:focus-within::placeholder,
.dsmForm .inputLabel input[type=text]:focus-within::placeholder,
.dsmForm .inputLabel input[type=email]:focus-within::placeholder,
.dsmForm .inputLabel input[type=tel]:focus-within::placeholder,
.dsmForm .inputLabel input[type=number]:focus-within::placeholder {
  opacity: 1;
}
.dsmForm .inputLabel:focus-within label {
  transform: translateY(-13px);
  color: rgb(170, 170, 170);
  font-size: 11px;
  line-height: 19px;
  letter-spacing: 0.16px;
}
.dsmForm .inputLabel label {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -9px;
  color: rgb(107, 107, 107);
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.21px;
  pointer-events: none;
  transition: all 0.2s ease 0s;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 30px);
}
.dsmForm input[type=url]:focus,
.dsmForm input[type=text]:focus,
.dsmForm input[type=email]:focus,
.dsmForm input[type=tel]:focus,
.dsmForm input[type=number]:focus {
  color: rgb(0, 0, 0);
  border-color: var(--color-primary);
}
.dsmForm input[type=url],
.dsmForm input[type=text],
.dsmForm input[type=email],
.dsmForm input[type=tel],
.dsmForm input[type=number] {
  color: rgb(107, 107, 107);
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  box-sizing: border-box;
  display: block;
  border: 1px solid rgb(216, 216, 216);
  border-radius: 4px;
  padding: 8px 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.dsmForm input[type=url].error,
.dsmForm input[type=text].error,
.dsmForm input[type=email].error,
.dsmForm input[type=tel].error,
.dsmForm input[type=number].error {
  border: 1px solid #d2431e;
  background-color: #fff4eb;
  color: rgb(224, 32, 32);
}
.dsmForm input[type=url]:disabled,
.dsmForm input[type=text]:disabled,
.dsmForm input[type=email]:disabled,
.dsmForm input[type=tel]:disabled,
.dsmForm input[type=number]:disabled {
  border-color: rgb(222, 222, 222);
  background: var(--color-white);
  cursor: not-allowed;
}
.dsmForm input[type=url]:disabled + label,
.dsmForm input[type=text]:disabled + label,
.dsmForm input[type=email]:disabled + label,
.dsmForm input[type=tel]:disabled + label,
.dsmForm input[type=number]:disabled + label {
  color: rgb(200, 200, 200);
}
.dsmForm span.error {
  margin-top: 4px;
  color: rgb(210, 67, 30);
  font-size: 12px;
  line-height: 12px;
  display: block;
  text-align: left;
}
.dsmForm label {
  font-size: 14px;
  display: block;
  text-align: left;
  margin-bottom: 5px;
}

.radioContainer {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.radioContainer input[type=radio] {
  position: absolute;
  top: 0px;
  display: block;
  width: 100%;
  left: 0px;
  height: 100%;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
  opacity: 0;
  z-index: 1;
}
.radioContainer input[type=radio]:disabled {
  cursor: default;
}
.radioContainer input[type=radio]:disabled + .radioStyling {
  border: 1px solid rgb(222, 222, 222) !important;
  border-color: rgb(222, 222, 222) !important;
}
.radioContainer input[type=radio]:disabled:checked + .radioStyling::before {
  background-color: rgb(222, 222, 222);
}
.radioContainer input[type=radio]:checked + .radioStyling {
  border: 2px solid var(--color-primary);
}
.radioContainer input[type=radio]:checked + .radioStyling::before {
  background-color: var(--color-primary);
}
.radioContainer input[type=radio]:checked + .radioStyling.error {
  background-color: var(--color-white);
}
.radioContainer:hover .radioStyling {
  border: 1px solid #6b6b6b;
}
.radioContainer .radioStyling {
  display: block;
  position: relative;
  border-radius: 100%;
  margin-right: 10px;
  box-sizing: border-box;
  transition: border-color 0.15s linear 0s;
  width: 12px;
  background-color: var(--color-white);
  height: 12px;
  border: 1px solid #aaaaaa;
}
.radioContainer .radioStyling::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate3d(-50%, -50%, 0px);
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.15s linear 0s;
}
.radioContainer .radioStyling.ticked.medium, .radioContainer .radioStyling.ticked.large {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.radioContainer .radioStyling.ticked svg {
  display: none;
}
.radioContainer .radioStyling.medium {
  width: 22px;
  height: 22px;
}
.radioContainer .radioStyling.medium::before {
  width: 12px;
  height: 12px;
}
.radioContainer .radioStyling.large {
  width: 30px;
  height: 30px;
}
.radioContainer .radioStyling.large::before {
  width: 18px;
  height: 18px;
}
.radioContainer .radioStyling.error {
  border: 1px solid rgb(210, 67, 30);
  background-color: #fff7f7;
}

.checkboxContainer {
  display: inline-block !important;
  position: relative;
  box-sizing: content-box;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: 16px;
  margin-bottom: 0;
  width: 16px;
}
.checkboxContainer.large, .checkboxContainer.large .checkbox {
  height: 28px !important;
  width: 28px !important;
}
.checkboxContainer.large svg, .checkboxContainer.large .checkbox svg {
  height: 12px !important;
  width: 14px !important;
}
.checkboxContainer.large .checkbox {
  height: 24px;
  width: 24px;
}
.checkboxContainer.large .checkbox:after {
  height: 17px;
  width: 8px;
  left: 8.5px;
  top: 1px;
  border-width: 0 3px 3px 0;
}
.checkboxContainer.medium {
  height: 24px !important;
  width: 24px !important;
}
.checkboxContainer.medium .checkbox {
  height: 24px;
  width: 24px;
}
.checkboxContainer.medium .checkbox::after {
  height: 16px;
  width: 7px;
  left: 7px;
  top: 1px;
  border-width: 0 3px 3px 0;
}
.checkboxContainer input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkboxContainer input[type=checkbox]:checked ~ .checkbox::after {
  display: block;
}
.checkboxContainer input[type=checkbox]:checked ~ .checkbox {
  border: 1px solid var(--color-outer-space);
  background-color: var(--color-white);
}
.checkboxContainer input[type=checkbox]:disabled + .checkbox:hover {
  border: 1px solid #dedede;
}
.checkboxContainer input[type=checkbox]:disabled + .checkbox {
  border: 1px solid #dedede;
}
.checkboxContainer input[type=checkbox]:checked + .checkbox.ticked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.checkboxContainer input[type=checkbox]:checked + .checkbox.ticked::after {
  border: none;
}
.checkboxContainer input[type=checkbox]:checked + .checkbox.ticked svg {
  display: block;
}
.checkboxContainer .checkbox:after {
  left: 4px;
  top: 1px;
  height: 8px;
  width: 4px;
  border: solid var(--color-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkboxContainer .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  border: 1px solid #aaaaaa;
  border-radius: 2px;
  box-sizing: content-box;
  width: 14px;
  transition: 0.2s border-color;
  background-color: var(--color-white);
}
.checkboxContainer .checkbox.ticked {
  border-radius: 50%;
}
.checkboxContainer .checkbox.ticked svg {
  display: none;
  stroke: var(--color-white);
  height: 10px;
  width: 10px;
}
.checkboxContainer .checkbox:hover {
  border: 1px solid rgb(107, 107, 107);
}
.checkboxContainer .checkbox::after {
  content: "";
  position: absolute;
  display: none;
}
.checkboxContainer .checkbox.error {
  margin-top: 0;
  background-color: rgb(255, 247, 247);
  border: 1px solid rgb(210, 67, 30);
}

.selectContainer {
  width: 280px;
}
.selectContainer.small button {
  height: 32px;
}
.selectContainer.large button {
  height: 56px;
}
.selectContainer.error button {
  border: 1px solid rgb(210, 67, 30);
  background-color: rgb(255, 247, 247);
  color: rgb(176, 189, 197);
}
.selectContainer.error button.filled {
  color: rgb(176, 189, 197);
}
.selectContainer button {
  background-color: var(--color-white);
  border: 1px solid rgb(216, 216, 216);
  color: rgb(15, 15, 15);
  font-size: inherit;
  font-family: Roboto;
  border-radius: 4px;
  cursor: pointer;
  width: 280px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0px 20px 0px 20px;
  background-repeat: no-repeat;
  background-position: right 18px center;
  position: relative;
  text-align: left;
  outline: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  height: 48px;
  transition: 0.2s all;
}
.selectContainer button:disabled {
  border: 1px solid rgb(216, 216, 216);
  cursor: default;
  pointer-events: none;
  color: rgb(216, 216, 216) !important;
}
.selectContainer button:hover {
  text-decoration: none !important;
}
.selectContainer button.active {
  text-decoration: none !important;
  border: 1px solid var(--color-primary);
  border-radius: 4px 4px 0px 0px;
  cursor: pointer;
  color: rgb(137, 149, 156);
  z-index: 3;
}
.selectContainer button.active svg {
  transform: rotate(180deg);
}
.selectContainer button.filled {
  color: rgb(15, 15, 15);
}
.selectContainer button svg {
  width: 12px;
  transition: ease-in-out 0.2s all;
  transform: rotate(0deg);
}
.selectContainer button .selectedItem {
  overflow: hidden;
  text-overflow: ellipsis;
}
.selectContainer ul {
  display: none;
  background-color: var(--color-white);
  border-radius: 0px 0px 4px 4px;
  border-top: 1px solid var(--color-primary);
  position: absolute;
  width: 280px;
  z-index: 5;
  overflow: overlay;
  box-shadow: rgba(58, 72, 80, 0.24) 0px 1px 1px 0px, rgba(176, 189, 197, 0.12) 1px 2px 11px -1px;
  box-sizing: border-box;
  margin: 0px;
  padding: 10px 0px;
  max-height: 309px;
}
.selectContainer li {
  position: relative;
  font-family: Roboto;
  color: rgb(45, 45, 45);
  cursor: pointer;
  display: block;
  padding: 0px 20px;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none;
  height: 24px;
  font-size: 16px;
  margin: 0;
}
.selectContainer li:hover {
  background-color: rgb(247, 248, 249);
}
.selectContainer li.selected {
  background-color: rgb(242, 242, 242);
}

.dsmTooltip {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  padding-top: 20px;
}
.dsmTooltip.click:hover .container {
  opacity: 0;
  visibility: hidden;
}
.dsmTooltip:hover .container {
  opacity: 1;
  visibility: visible;
}
.dsmTooltip .item {
  bottom: 0;
  height: 18px;
  width: 18px;
  line-height: 18px;
  font-family: Roboto;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  vertical-align: middle;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid;
  cursor: pointer;
}
.dsmTooltip.click .container {
  transition: none;
}
.dsmTooltip .container {
  overflow: visible;
  opacity: 0;
  transition: 0.2s all;
  z-index: 8;
  width: 250px;
  margin: 0px;
  position: absolute;
  top: 0;
  visibility: hidden;
  left: 49px;
  padding-bottom: 8px;
}
.dsmTooltip.right {
  padding-top: 0;
  padding-left: 10px;
}
.dsmTooltip.right .arrow {
  left: unset;
  right: 0;
  top: 50%;
}
.dsmTooltip.right .container {
  padding-bottom: 0;
  padding-right: 8px;
}
.dsmTooltip.bottom {
  padding-top: 0;
}
.dsmTooltip.bottom .arrow {
  left: 50%;
  bottom: unset;
  top: 0;
}
.dsmTooltip.bottom .container {
  padding-bottom: 0;
  padding-top: 8px;
}
.dsmTooltip.close svg {
  position: absolute;
  top: 22px;
  right: 12px;
  cursor: pointer;
  height: 12px;
  width: 12px;
  z-index: 3;
}
.dsmTooltip.left {
  padding-top: 0;
  padding-right: 10px;
}
.dsmTooltip.left .arrow {
  left: 0;
  right: unset;
  top: 50%;
}
.dsmTooltip.left .container {
  padding-bottom: 0;
  padding-left: 8px;
}
.dsmTooltip .arrow {
  position: absolute;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  bottom: 0px;
  left: 122.5px;
  z-index: 1;
  width: 16px;
  height: 16px;
  background-color: var(--color-white);
  transform: rotate(45deg);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.dsmTooltip .infoBox {
  position: relative;
  background-color: var(--color-white);
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.dsmTooltip .infoBox:before {
  content: "";
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
}
.dsmTooltip .infoBox .textArea {
  color: black;
  padding: 20px;
  z-index: 3;
  position: relative;
}

.dsmBadge {
  display: inline-flex;
  align-items: flex-end;
  border-radius: 2px;
  line-height: 12px;
  padding: 4.5px 8px 4.5px 10px;
  font-size: 13px;
  white-space: nowrap;
}
.dsmBadge.premium {
  background-color: rgb(254, 248, 237);
  color: rgb(192, 140, 23);
}
.dsmBadge.sales {
  background-color: rgb(254, 238, 240);
  color: rgb(240, 47, 65);
}
.dsmBadge.misc {
  background-color: rgb(231, 244, 254);
  color: var(--color-primary);
}
.dsmBadge.sellingFast {
  background-color: rgb(255, 241, 224);
  color: rgb(245, 119, 0);
}
.dsmBadge.small {
  border-radius: 4px 2px;
  padding: 5px 6px 3px;
  font-size: 11px;
}
.dsmBadge.big {
  border-radius: 4px 2px;
  padding: 6px 8px 5px 10px;
  font-size: 13px;
}
.dsmBadge.large {
  border-radius: 2px;
  padding: 9px 10px;
  font-size: 14px;
}

.dsmShadow {
  box-shadow: 0 1px 0 0 rgba(58, 72, 80, 0.07), 0 2px 11px -1px rgba(176, 189, 197, 0.12);
}
.dsmShadow.shadow-2 {
  box-shadow: 0 1px 1px 0 rgba(58, 72, 80, 0.07), 0 4px 12px -1px rgba(176, 189, 197, 0.13), 0 1px 4px 1px rgba(137, 149, 156, 0.07);
}
.dsmShadow.shadow-3 {
  box-shadow: 0 1px 2px 0 rgba(58, 72, 80, 0.07), 0 6px 13px 0 rgba(176, 189, 197, 0.14), 0 1px 6px 1px rgba(137, 149, 156, 0.09);
}
.dsmShadow.shadow-4 {
  box-shadow: 0 1px 3px 0 rgba(58, 72, 80, 0.07), 0 8px 14px 0 rgba(176, 189, 197, 0.15), 0 2px 8px 1px rgba(137, 149, 156, 0.11);
}
.dsmShadow.shadow-5 {
  box-shadow: 0 1px 4px 0 rgba(58, 72, 80, 0.07), 0 10px 15px 0 rgba(176, 189, 197, 0.16), 0 4px 10px 1px rgba(137, 149, 156, 0.13);
}
.dsmShadow.shadow-6 {
  box-shadow: 0 1px 5px 1px rgba(58, 72, 80, 0.07), 0 12px 16px 0 rgba(176, 189, 197, 0.17), 0 6px 12px 1px rgba(137, 149, 156, 0.15);
}

@font-face {
  font-family: "brands";
  src: url("../fonts/brands.eot?y0faqm");
  src: url("../fonts/brands.eot?y0faqm#iefix") format("embedded-opentype"), url("../fonts/brands.ttf?y0faqm") format("truetype"), url("../fonts/brands.woff?y0faqm") format("woff"), url("../fonts/brands.svg?y0faqm#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
svg.dsmLogo * {
  fill: black !important;
}
svg.dsmLogo {
  height: 25px;
  width: auto;
}

.dsmLogo {
  font-family: "brands" !important;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: black;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dsmLogo.adidas:before {
  content: "\e900";
}
.dsmLogo.alain_mikli:before {
  content: "\e901";
}
.dsmLogo.armani_exchange:before {
  content: "\e902";
}
.dsmLogo.autoflex:before {
  content: "\e903";
}
.dsmLogo.balenciaga:before {
  content: "\e904";
}
.dsmLogo.blumarine:before {
  content: "\e905";
}
.dsmLogo.burberry:before {
  content: "\e906";
}
.dsmLogo.calvin_klein_ck:before {
  content: "\e907";
}
.dsmLogo.calvin_klein_cosmetics:before {
  content: "\e908";
}
.dsmLogo.calvin_klein:before {
  content: "\e909";
}
.dsmLogo.celine:before {
  content: "\e90a";
}
.dsmLogo.coach:before {
  content: "\e90b";
}
.dsmLogo.converse:before {
  content: "\e90c";
}
.dsmLogo.diva:before {
  content: "\e90d";
}
.dsmLogo.dkny:before {
  content: "\e90e";
}
.dsmLogo.dsquared2:before {
  content: "\e90f";
}
.dsmLogo.emporio_armani:before {
  content: "\e910";
}
.dsmLogo.ermenegildo_zenga:before {
  content: "\e911";
}
.dsmLogo.flexon:before {
  content: "\e912";
}
.dsmLogo.fossil:before {
  content: "\e913";
}
.dsmLogo.gant:before {
  content: "\e914";
}
.dsmLogo.giorgio_armani:before {
  content: "\e915";
}
.dsmLogo.givenchy:before {
  content: "\e916";
}
.dsmLogo.gucci:before {
  content: "\e917";
}
.dsmLogo.guess:before {
  content: "\e918";
}
.dsmLogo.hugo_boss:before {
  content: "\e919";
}
.dsmLogo.jimmy_choo:before {
  content: "\e91a";
}
.dsmLogo.kate_spade:before {
  content: "\e91b";
}
.dsmLogo.lacoste:before {
  content: "\e91c";
}
.dsmLogo.lanvim:before {
  content: "\e91d";
}
.dsmLogo.marc_jacobs:before {
  content: "\e91e";
}
.dsmLogo.michael_kors:before {
  content: "\e91f";
}
.dsmLogo.miu_miu:before {
  content: "\e920";
}
.dsmLogo.mont_blanc:before {
  content: "\e921";
}
.dsmLogo.nike:before {
  content: "\e922";
}
.dsmLogo.oakley:before {
  content: "\e923";
}
.dsmLogo.oneill:before {
  content: "\e924";
}
.dsmLogo.persol:before {
  content: "\e925";
}
.dsmLogo.pierre_cardin:before {
  content: "\e926";
}
.dsmLogo.polo_ralph_lauren:before {
  content: "\e927";
}
.dsmLogo.prada:before {
  content: "\e928";
}
.dsmLogo.puma:before {
  content: "\e929";
}
.dsmLogo.ray_ban:before {
  content: "\e92a";
}
.dsmLogo.saint_laurent:before {
  content: "\e92b";
}
.dsmLogo.stella_mccartney:before {
  content: "\e92c";
}
.dsmLogo.super_dry:before {
  content: "\e92d";
}
.dsmLogo.swarovski:before {
  content: "\e92e";
}
.dsmLogo.tom_ford:before {
  content: "\e92f";
}
.dsmLogo.tory_burch:before {
  content: "\e930";
}
.dsmLogo.versach:before {
  content: "\e931";
}
.dsmLogo.viktor_and_rolf:before {
  content: "\e932";
}
.dsmLogo.vogue:before {
  content: "\e933";
}
.dsmLogo.revel_tune:before {
  content: "\e934";
}
.dsmLogo.amelia_e:before {
  content: "\e935";
}
.dsmLogo.gamespex:before {
  content: "\e936";
}
.dsmLogo.gamespex2:before {
  content: "\e937";
}
.dsmLogo.muse_symbol:before {
  content: "\e938";
}
.dsmLogo.muse_x_hilary_duff:before {
  content: "\e939";
}
.dsmLogo.muse:before {
  content: "\e93a";
}
.dsmLogo.olos:before {
  content: "\e93b";
}
.dsmLogo.ottoto:before {
  content: "\e93c";
}
.dsmLogo.revel:before {
  content: "\e93d";
}
.dsmLogo.seaclean:before {
  content: "\e93e";
}
.dsmLogo.yoji:before {
  content: "\e93f";
}

.dsmAccordian {
  outline: none;
  border-top: 1px solid #E7EBED;
  padding: 20px;
  transition: 0.2s background-color, 0.3s height, 3s max-height;
  max-height: auto;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  margin: auto;
  box-sizing: border-box;
}
.dsmAccordian:last-of-type {
  border-bottom: 1px solid #E7EBED;
}
.dsmAccordian:hover {
  background-color: rgba(58, 72, 80, 0.04);
}
@media (max-width: 768px) {
  .dsmAccordian {
    padding: 18px 20px;
  }
  .dsmAccordian:hover {
    background-color: transparent;
  }
}
.dsmAccordian > .accordianContent {
  display: block;
  transition: 0.6s all;
  opacity: 0;
  overflow: hidden;
  max-width: 80%;
}
@media (max-width: 768px) {
  .dsmAccordian > .accordianContent {
    max-width: 100%;
  }
}
.dsmAccordian summary {
  list-style: none;
  outline: none;
  color: #232B30;
  font-family: Roboto;
  font-size: 16px;
  display: grid;
  width: 100%;
  position: relative;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  align-items: center;
  letter-spacing: 0;
  line-height: 30px;
}
.dsmAccordian summary > span {
  margin-right: 60px;
}
@media (max-width: 768px) {
  .dsmAccordian summary {
    font-size: 16px;
    line-height: 24px;
  }
}
.dsmAccordian summary > .plus {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  align-self: flex-start;
  transition: 0.1s all;
  text-align: right;
  justify-self: flex-end;
  height: 12px;
  width: 13px;
}
.dsmAccordian summary > .plus * {
  transition: 0.3s all;
  stroke: #B0BDC5 !important;
}
.dsmAccordian summary > .plus line:nth-child(2) {
  transition: 0.2s all;
}
.dsmAccordian a {
  font-size: inherit;
  color: #0000EE;
  text-decoration: underline;
}
.dsmAccordian summary::-webkit-details-marker {
  display: none;
}
.dsmAccordian[open] * {
  opacity: 1;
}
.dsmAccordian[open] {
  max-height: 1000px;
}
.dsmAccordian[open] summary .plus {
  transform-origin: center center;
  animation: rotateTop 0.3s forwards;
}
.dsmAccordian[open] summary .plus path:nth-child(1) {
  transform-origin: center center;
  animation: rotateArrow 0.3s forwards;
}
.dsmAccordian[open] summary .plus path:nth-child(2) {
  opacity: 0;
}
.dsmAccordian.closeAccordian {
  max-height: auto;
  transition: 0.2s background-color, 0.3s height, 0.5s max-height;
}
.dsmAccordian.accordianClosed summary .plus {
  transform-origin: center center;
  animation: rotateBack 0.3s forwards;
}
.dsmAccordian.accordianClosed summary .plus path:nth-child(1) {
  transform-origin: center center;
  animation: rotateBackArrow 0.3s forwards;
}
.dsmAccordian.accordianClosed summary .plus path:nth-child(2) {
  opacity: 1;
  transition: 0.3s opacity;
}
@keyframes rotateTop {
  from {
    transform: rotate(0) translateY(-50%);
  }
  to {
    transform: rotate(-90deg) translateX(50%);
  }
}
@keyframes rotateBack {
  from {
    transform: rotate(-90deg) translateX(50%);
  }
  to {
    transform: rotate(0) translateY(-50%);
  }
}
@keyframes rotateArrow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-90deg);
  }
}
@keyframes rotateBackArrow {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(0);
  }
}
.dsmAccordian.closeAccordian summary {
  font-weight: normal !important;
}
.dsmAccordian.closeAccordian summary ~ * {
  opacity: 0;
}
@keyframes slideDown {
  from {
    max-height: 71px;
  }
  to {
    max-height: 1000px;
  }
}
@keyframes slideUp {
  to {
    max-height: 71px;
  }
  from {
    max-height: 1000px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sweep-reverse {
  0% {
    opacity: 1;
    margin-top: 0px;
  }
  100% {
    opacity: 0;
  }
}
.dsmAccordian[open] {
  background-color: rgba(58, 72, 80, 0.04);
}
.dsmAccordian[open] > .accordianContent {
  padding-top: 12px;
}
.dsmAccordian[open] summary {
  font-weight: bold;
  width: 100%;
}
.dsmAccordian[open] summary > .plus * {
  stroke: #3A4850 !important;
}
.dsmAccordian[open] summary > .plus line:first-child {
  animation: scaleDown 0.1s ease-in-out;
}
.dsmAccordian[open] summary > .plus line:nth-child(2) {
  transform: rotate(-90deg) translateX(-13px);
}
.dsmAccordian[open] {
  color: #232B30;
  font-family: Roboto;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}
@media (max-width: 768px) {
  .dsmAccordian[open] {
    font-size: 14px;
    line-height: 24px;
  }
}
@keyframes scaleDown {
  from {
    stroke-width: 1px;
  }
  to {
    stroke-width: 0px;
  }
}

.dsmTrustpilot {
  width: 100%;
}
.dsmTrustpilot .swiper-outer {
  margin: 0 42px;
  padding-bottom: 36px;
  position: relative;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiper-outer {
    margin: 0;
    padding-bottom: 20px;
  }
}
.dsmTrustpilot .dsmIcons.arrow-left {
  margin-right: 1px;
}
.dsmTrustpilot .dsmIcons.arrow-right {
  margin-left: 2px;
}
.dsmTrustpilot .swiper-slide {
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 18px 30px;
  padding-left: 36px;
  color: #4d4d4d;
  font-family: Roboto;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  box-sizing: border-box;
  letter-spacing: 0;
  height: auto;
  line-height: 22px;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiper-slide {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 29px 10.5px;
    box-shadow: 0 1px 0 0 rgba(58, 72, 80, 0.07), 0 2px 11px -1px rgba(176, 189, 197, 0.12);
  }
  .dsmTrustpilot .swiper-slide > div {
    margin: 0 60px;
  }
}
.dsmTrustpilot .swiperTop {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperTop {
    display: block;
    order: 2;
    text-align: center;
    justify-content: flex-start;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
.dsmTrustpilot .swiperDate {
  color: #89959c;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
  text-align: right;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperDate {
    text-align: center;
  }
}
.dsmTrustpilot .swiperTitle {
  color: #0f0f0f;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 19px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperTitle {
    text-align: center;
    margin-bottom: 10px !important;
  }
}
.dsmTrustpilot .swiperAuthor {
  color: #89959c;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
  margin-top: auto;
  padding-top: 10px;
  justify-self: end;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperAuthor {
    text-align: center;
    order: 3;
    padding-top: 0;
  }
}
.dsmTrustpilot .swiperArrows {
  z-index: 1;
  top: calc(50% - 10px);
  outline: none;
  transform: translateY(-50%);
}
.dsmTrustpilot .swiperArrows.arrow-left {
  left: -24px;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperArrows.arrow-left {
    left: 10.5px;
  }
}
.dsmTrustpilot .swiperArrows.arrow-right {
  right: -24px;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperArrows.arrow-right {
    right: 10.5px;
  }
}
.dsmTrustpilot .swiper-container {
  overflow: hidden;
  padding: 10px;
  margin: -10px;
  margin-bottom: 0;
}
.dsmTrustpilot .swiper-button-disabled svg * {
  stroke: #aaaaaa !important;
}
.dsmTrustpilot .arrowContainer svg.dsmIcons {
  height: 11px;
  width: 6px;
}
.dsmTrustpilot .swiperRating {
  display: flex;
}
.dsmTrustpilot .swiperRating svg {
  margin-right: 2px;
}
.dsmTrustpilot .swiperRating svg:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperRating {
    justify-content: center;
    margin-bottom: 10px !important;
  }
}
.dsmTrustpilot .swiperText {
  margin-right: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dsmTrustpilot .swiperText {
    text-align: center;
    -webkit-line-clamp: 3;
  }
}
.dsmTrustpilot .arrowContainer {
  -webkit-tap-highlight-color: transparent;
  width: 48px;
  cursor: pointer;
  height: 48px;
  background-color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  transition: 0.2s all;
  align-items: center;
  right: 19.5px;
  border-radius: 50%;
  border: 1px solid #f1f1f1;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(58, 72, 80, 0.07), 0 8px 14px 0 rgba(176, 189, 197, 0.15);
}
@media (max-width: 768px) {
  .dsmTrustpilot .arrowContainer {
    width: 40px;
    height: 40px;
  }
}
.dsmTrustpilot .arrowContainer:hover {
  background-color: #f7f8f9;
}
.dsmTrustpilot .swiper-button-disabled:hover {
  background-color: #fff;
}
.dsmTrustpilot .swiper-pagination {
  left: 50%;
  bottom: 0;
  width: 100%;
  justify-content: center;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
}
.dsmTrustpilot .swiper-pagination-bullet {
  height: 9px;
  margin-right: 9px;
  width: 9px;
  outline: none;
  opacity: 0.3;
  background-color: #89959c;
  transition: 0.2s all;
}
.dsmTrustpilot .swiper-pagination-bullet:hover {
  opacity: 0.5;
}
.dsmTrustpilot .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.dsmTrustpilot .swiper-pagination-bullet-active {
  opacity: 1;
  pointer-events: none;
}

.dsmTrustpilot-Header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dsmTrustpilot-Header > * {
  margin-right: 13px !important;
}
.dsmTrustpilot-Header > *:last-child {
  margin-right: 0 !important;
}
@media (max-width: 768px) {
  .dsmTrustpilot-Header {
    flex-direction: column;
  }
  .dsmTrustpilot-Header > * {
    margin-right: 0 !important;
    margin-bottom: 10px !important;
  }
  .dsmTrustpilot-Header > *:last-child {
    margin-bottom: 0 !important;
  }
  .dsmTrustpilot-Header .reviewsDot {
    display: none;
  }
  .dsmTrustpilot-Header .trustpilotLogo {
    height: 21px;
    width: 82px;
  }
}
.dsmTrustpilot-Header .starsContainer {
  display: flex;
}
.dsmTrustpilot-Header .starsContainer svg {
  margin-right: 2px;
}
.dsmTrustpilot-Header .starsContainer svg:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .dsmTrustpilot-Header .starsContainer svg {
    width: 26px;
    height: 26px;
  }
}
.dsmTrustpilot-Header .numberOfReviews {
  color: #0F0F0F;
  font-family: Roboto;
  font-size: 19.2px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 23px;
}
.dsmTrustpilot-Header .numberOfReviews .mobileText {
  display: none;
}
@media (max-width: 768px) {
  .dsmTrustpilot-Header .numberOfReviews .desktopText {
    display: none;
  }
  .dsmTrustpilot-Header .numberOfReviews .mobileText {
    display: inline-block;
  }
  .dsmTrustpilot-Header .numberOfReviews .underlineReviews {
    font-weight: bold;
    text-decoration: underline;
  }
  .dsmTrustpilot-Header .numberOfReviews {
    color: #0F0F0F;
    font-family: Helvetica;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 14px;
  }
}

.dsmSliderToggle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: static;
  width: -moz-max-content;
  width: max-content;
  height: 36px;
  background: #f1f1f1;
  border-radius: 36px;
  position: relative;
  padding: 0px 4px 0px 4px;
  font-family: Roboto, Sans-serif;
}
@media (max-width: 768px) {
  .dsmSliderToggle {
    justify-content: unset;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
    font-family: Helvetica;
    margin: auto;
  }
}
.dsmSliderToggle > .dsmSliderToggleClick {
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.0973831);
  border-radius: 17px;
}
.dsmSliderToggle .dsmSliderToggleBtn {
  padding: 6px 20px 6px 20px;
  text-decoration: none;
  z-index: 4;
  font-weight: 500;
  position: relative;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  color: #4d4d4d;
  padding: 6px 20px 6px 20px;
  transition: 0.3s;
}
.dsmSliderToggle .dsmSliderToggleBtn:hover {
  color: #000000;
}
.dsmSliderToggle .nav-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  transition: 0.4s;
  height: 5px;
  z-index: 1;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.0973831);
  border-radius: 17px;
  height: 28px;
  top: 4px;
}
.dsmSliderToggle div.dsmSliderToggleBtn.is-active {
  font-style: normal;
  font-weight: normal;
  color: #000000;
  z-index: 2;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.0973831);
}

.dsm-swiper {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.dsm-swiper * {
  box-sizing: border-box;
}
.dsm-swiper.minimised {
  transition: 0.15s max-width;
  margin: 0;
}
.dsm-swiper .pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 16px;
}
.dsm-swiper .pagination .dot {
  background: rgba(58, 72, 80, 0.15);
  border-radius: 100px;
  width: 6px;
  height: 6px;
  display: block;
  margin-right: 6px;
  cursor: pointer;
}
.dsm-swiper .pagination .dot.active {
  background: #3a4850;
}
.dsm-swiper .pagination .dot:last-child {
  margin-right: 0;
}
.dsm-swiper .slides {
  display: grid;
  grid-auto-flow: column;
  overflow: auto;
  justify-content: flex-start;
  min-height: 260px;
  cursor: grab;
  width: 100%;
  transition: 0.15s width;
}
.dsm-swiper .slides::-webkit-scrollbar {
  display: none;
}
.dsm-swiper .slide {
  transition: 0.15s width;
  background: #dbe1e5;
}
.dsm-swiper .progress {
  margin: 0 60px;
  opacity: 0;
  height: 4px;
  transition: 0.3s opacity;
  margin-top: 16px;
  background: rgba(58, 72, 80, 0.15);
  overflow: hidden;
  border-radius: 100px;
  position: relative;
}
.dsm-swiper .progress .indicator {
  background: #5b6971;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transform-origin: left;
  display: block;
  width: 100%;
  transform: scale(0);
  transition: 0.3s scale linear;
}

.swiper-arrow {
  width: 52px;
  padding: 19px 21px;
  height: 52px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(58, 72, 80, 0.07), 0px 6px 13px rgba(176, 189, 197, 0.14), 0px 1px 6px rgba(176, 189, 197, 0.09);
  border-radius: 100px;
}
.swiper-arrow.left {
  padding-right: 23px;
  left: 0;
}
.swiper-arrow.right {
  padding-left: 23px;
  right: 0;
}

.dsm-product-grid {
  display: grid;
  max-width: 1296px;
  font-family: Roboto;
  margin: 0 auto;
  justify-content: space-between;
  grid-template-columns: repeat(3, minmax(auto, 386px));
  row-gap: 20px;
}
@media (max-width: 1440px) {
  .dsm-product-grid {
    max-width: 1164px;
    grid-template-columns: repeat(3, minmax(auto, 340px));
  }
}
@media (max-width: 1280px) {
  .dsm-product-grid {
    max-width: 936px;
    grid-template-columns: repeat(3, minmax(auto, 280px));
  }
}
@media (max-width: 1024px) {
  .dsm-product-grid {
    max-width: 728px;
    row-gap: 36px;
    grid-template-columns: repeat(2, minmax(auto, 354px));
  }
}
@media (max-width: 768px) {
  .dsm-product-grid {
    max-width: 100%;
    row-gap: 28px;
    margin: 0 16px;
    grid-template-columns: 1fr;
  }
}
.dsm-product-grid .dsmBadge {
  position: absolute;
  top: 0;
  left: 0;
}
.dsm-product-grid .colour-chooser {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 24px;
  gap: 5px;
  margin-top: 8px;
  margin-bottom: 12px;
  justify-content: center;
}
.dsm-product-grid .colour-chooser .circle {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: 1px solid rgba(91, 105, 113, 0.2);
}
.dsm-product-grid .colour-chooser .circle::after {
  transition: 0.3s all;
  border: 1px solid transparent;
}
.dsm-product-grid .colour-chooser .circle:hover::after {
  display: block;
  border: 1px solid rgba(91, 105, 113, 0.35);
}
.dsm-product-grid .colour-chooser .circle.active::after {
  display: block;
}
.dsm-product-grid .colour-chooser .circle.active:hover::after {
  border: 1px solid #5B6971;
}
.dsm-product-grid .colour-chooser .circle::after {
  display: none;
  border: 1px solid #5B6971;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dsm-product-grid .colour-chooser .circle-plus {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #5B6971;
  color: #5B6971;
}
.dsm-product-grid .colour-chooser .circle-plus:hover {
  border: 1px solid #0F0F0F;
  color: #0F0F0F;
}
.dsm-product-grid .product-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 24px;
  text-align: center;
  color: #0F0F0F;
}
@media (max-width: 1024px) {
  .dsm-product-grid .product-name {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .dsm-product-grid .product-name {
    font-size: 18px;
    line-height: 24px;
  }
}
.dsm-product-grid .product-images {
  height: 170px;
  display: block;
}
@media (max-width: 1280px) {
  .dsm-product-grid .product-images {
    height: 140px;
  }
}
@media (max-width: 1024px) {
  .dsm-product-grid .product-images {
    height: 177px;
  }
}
@media (max-width: 768px) {
  .dsm-product-grid .product-images {
    height: 50vw;
  }
}
.dsm-product-grid .product-images img {
  mix-blend-mode: multiply;
  max-width: 100%;
  height: 100%;
  width: 100%;
  display: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.dsm-product-grid .product-images img.active {
  display: block;
}
.dsm-product-grid .product-price {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #89959C;
}
.dsm-product-grid .product-price .old {
  text-decoration: line-through;
}
.dsm-product-grid .product-price .new {
  color: #F22A42;
}
@media (max-width: 1280px) {
  .dsm-product-grid .product-price {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 1024px) {
  .dsm-product-grid .product-price {
    font-size: 14px;
    line-height: 16px;
  }
}
.dsm-product-grid .button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px;
  visibility: hidden;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .dsm-product-grid .button-row {
    display: none;
  }
}

.dsm-product {
  position: relative;
}

.dsm-product:hover .button-row {
  visibility: visible;
}