.studio-header {
  height: 65px;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}
.studio-header .sign-up {
  display: none;
  height: 36px;
  line-height: 36px;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 0 20px;
}
.studio-header .header-text {
  margin: 0;
  line-height: 21px;
  font-size: 18px;
}
@media (min-width: 577px) {
  .studio-header .sign-up {
    display: block;
  }
}
@media (min-width: 700px) {
  .studio-header .header-text {
    font-size: 22px;
  }
}
.footer {
  background: #fff;
  height: 50px;
  padding: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 2px 0 6px rgba(62, 75, 94, 0.3);
  border-top: 1px solid #c8c8c8;
}
.footer .footer-links {
  font-size: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .footer-links p {
  width: 100%;
  text-align: center;
  color: #8395a8;
  margin: 0;
  margin-top: 5px;
}
.footer .footer-links a {
  display: block;
  font-weight: 600;
}
.footer .footer-links a:not(:last-of-type) {
  margin-right: 10px;
}
@media (min-width: 577px) {
  .footer {
    width: 100%;
    position: static;
  }
}
@media (min-width: 700px) {
  .footer {
    width: 320px;
    position: fixed;
    border-top: none;
    bottom: 0;
    z-index: 1;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer .footer-links {
    justify-content: left;
  }
  .footer .footer-links p {
    text-align: left;
  }
  .footer .footer-links a {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .footer {
    width: 31vw;
  }
}
.studio-container {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.studio-stage {
  display: flex;
  position: relative;
  flex-grow: 1;
}

.studio-panel {
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 20px;
}
.studio-panel.hide {
  opacity: 0;
  z-index: -1;
  position: absolute;
}

.studio-tabs,
.code-tabs {
  background: white;
  font-size: 12px;
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  border-bottom: 1px solid #c8c8c8;
  height: 56px;
  box-sizing: border-box;
}
.studio-tabs .tab,
.code-tabs .tab {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.studio-tabs .tab svg,
.code-tabs .tab svg {
  height: 24px;
}
.studio-tabs .tab svg path,
.code-tabs .tab svg path {
  fill: #132f59;
}
.studio-tabs .tab:hover,
.code-tabs .tab:hover {
  color: #3863a3;
}
.studio-tabs .tab:hover svg path,
.code-tabs .tab:hover svg path {
  fill: #3863a3;
}
.studio-tabs .tab.selected,
.code-tabs .tab.selected {
  color: #0078FF;
  box-shadow: inset 0 -3px 0 #0078FF;
}
.studio-tabs .tab.selected svg path,
.code-tabs .tab.selected svg path {
  fill: #0078FF;
}

@media (min-width: 700px) {
  .studio-tabs {
    display: none;
  }

  .studio-stage {
    display: block;
  }

  .studio-panel.hide {
    opacity: 1;
    z-index: 0;
    position: relative;
  }
  .studio-panel.form {
    width: 320px;
    float: left;
    position: relative;
    z-index: 1;
    box-shadow: 2px 0 6px rgba(62, 75, 94, 0.3);
  }
  .studio-panel.preview {
    height: calc(70vh - 35px);
  }
  .no-header .studio-panel.preview {
    height: 70vh;
  }
  .studio-panel.code {
    box-shadow: 0px -3px 6px -3px rgba(62, 75, 94, 0.3);
    height: calc(30vh - 30px);
  }
  .no-header .studio-panel.code {
    height: 30vh;
  }
  .studio-panel.code.expanded {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 69vw;
  }
  .studio-panel.preview, .studio-panel.code {
    margin-left: 320px;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .studio-panel.form {
    width: 31vw;
  }
  .studio-panel.preview, .studio-panel.code {
    margin-left: 31vw;
    width: auto;
  }
}
.studio-panel.code pre {
  margin-bottom: 0 !important;
  width: 100%;
  box-sizing: border-box;
  height: calc(100% - 40px);
}

.code-controls {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.code-controls .btn {
  height: 32px;
  font-size: 13px;
  line-height: 30px;
  font-weight: normal;
  margin: 0 0 0 10px;
  white-space: nowrap;
}
.code-controls .btn.btn-icon i {
  margin-right: 0;
}
.code-controls .btn.reset-btn {
  background: #ffffff;
  border: 1px solid #c6d1db;
  color: #666;
}
.code-controls .btn.reset-btn svg path {
  fill: #666;
}
.code-controls .btn.reset-btn:hover {
  background: inherit;
  color: rgba(102, 102, 102, 0.7);
}
.code-controls .btn.reset-btn:hover svg path {
  fill: rgba(102, 102, 102, 0.7);
}
.code-controls .btn .label {
  display: none;
}
@media (min-width: 1024px) {
  .code-controls .btn.btn-icon i {
    margin-right: 6px;
  }
  .code-controls .btn .label {
    display: inline;
  }
}
.code-controls .btn-expand {
  position: absolute;
  left: 50%;
  top: -20px;
  margin: 0;
  padding: 0 10px;
  transform: translateX(-50%);
  line-height: 20px;
  height: 20px;
  background: #fff;
  display: none;
}
.code-controls .btn-expand:focus {
  outline: none;
}
.code-controls .btn-expand:focus svg path {
  fill: #b5b5b5;
}
.code-controls .btn-expand svg {
  width: 20px;
  height: 20px;
}
.code-controls .btn-expand svg path {
  fill: #9b9b9b;
}
.expanded .code-controls .btn-expand {
  top: -12px;
}
@media (min-width: 700px) {
  .code-controls .btn-expand {
    display: block;
  }
}
.code-controls .mdc-snackbar {
  background: #ebf0f4;
  color: #454e5a;
  border-radius: 4px;
  position: absolute;
  bottom: 20px;
  right: 30px;
  padding: 12px 70px 12px 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s;
}
.code-controls .mdc-snackbar--open {
  transform: scale(1);
  opacity: 1;
}
.code-controls .mdc-snackbar--closing {
  transform: scale(0);
  opacity: 0;
}
.code-controls .mdc-snackbar .closeBtn {
  top: calc(50% - 9px);
  right: 20px;
}

.config-type-message {
  font-size: 14px;
  justify-self: flex-start;
  margin-right: auto;
}
.config-type-message a {
  cursor: pointer;
}

.code-tabs {
  height: auto;
  border-bottom: none;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  margin-right: auto;
}
.code-tabs .tab {
  width: 120px;
  padding: 5px 0 10px;
}
.code-tabs .tab.selected {
  box-shadow: inset 0 -2px 0 #0078FF;
}

.btn.closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 18px;
  width: 15px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: none;
}
.btn.closeBtn::before, .btn.closeBtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 18px;
  width: 2px;
  background-color: #6d7a8a;
  transition: background-color 0.1s ease-in-out;
}
.btn.closeBtn::before {
  transform: rotate(45deg);
}
.btn.closeBtn::after {
  transform: rotate(-45deg);
}
.btn.closeBtn:hover::before, .btn.closeBtn:hover::after, .btn.closeBtn:focus::before, .btn.closeBtn:focus::after {
  background-color: #2e3742;
}

.Overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.Modal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% - 200px);
  width: 400px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.Modal:focus {
  outline: none;
}
.Modal h2 {
  margin: 0;
  padding: 0 30px;
  margin-right: auto;
  line-height: 60px;
  background: #ebf0f4;
  font-size: 17px;
  color: #454e5a;
}
.Modal p {
  margin: 0;
  padding: 20px 30px 40px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #454e5a;
}
.Modal .btn {
  font-weight: 500;
  margin: 12px 30px 15px;
}
.Modal .btn:focus {
  outline: none;
}
.Modal .btn.closeBtn {
  margin: 0;
}
.Modal .btn.cancel {
  background: #e4ebf1;
  color: #454e5a;
}
.Modal .btn.cancel:hover {
  background: #d3dfe8;
}
.Modal .btn.cancel:focus {
  box-shadow: 0 0 2px 1px #c2d2e0;
}
.Modal .btn.reset {
  background: #f0574e;
  float: right;
}
.Modal .btn.reset:hover {
  background: #ee4136;
}
.Modal .btn.reset:focus {
  box-shadow: 0 0 2px 1px #af180f;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  animation-name: rcToolTipZoomIn;
  animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  animation-name: rcToolTipZoomOut;
  animation-play-state: running;
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.9;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-placement-top,
.rc-tooltip-placement-topLeft,
.rc-tooltip-placement-topRight {
  padding: 5px 0 9px 0;
}
.rc-tooltip-placement-right,
.rc-tooltip-placement-rightTop,
.rc-tooltip-placement-rightBottom {
  padding: 0 5px 0 9px;
}
.rc-tooltip-placement-bottom,
.rc-tooltip-placement-bottomLeft,
.rc-tooltip-placement-bottomRight {
  padding: 9px 0 5px 0;
}
.rc-tooltip-placement-left,
.rc-tooltip-placement-leftTop,
.rc-tooltip-placement-leftBottom {
  padding: 0 9px 0 5px;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: #373737;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
  min-height: 34px;
}
.rc-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: 4px;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #373737;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: 4px;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #373737;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: 4px;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #373737;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: 4px;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #373737;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}

.rc-tooltip {
  opacity: 1;
}

.rc-tooltip-inner {
  min-height: 0;
  max-width: 200px;
  background: rgba(29, 46, 66, 0.9);
  border-radius: 5px;
}

.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  color: #333a44;
}

.rc-tooltip-content {
  line-height: initial;
}
.radio input {
  display: none;
}
.radio label:not(.with-image) {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}
.radio label:not(.with-image)::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #4e4e4e;
  transition: all 0.2s;
}
.radio label:not(.with-image)::after {
  content: "";
  display: none;
  position: absolute;
  height: 6px;
  width: 6px;
  left: 3px;
  top: calc(50% - 3px);
  border-radius: 50%;
  background: #0078FF;
}
.radio label:not(.with-image).with-icon .isvg svg {
  height: 24px;
  width: 24px;
  margin-right: 10px;
}
.radio label:not(.with-image).with-icon .isvg svg path {
  fill: #c6d1db;
}
.radio label:not(.with-image):hover, .radio label:not(.with-image):hover::before {
  color: #909090;
}
.radio label:not(.with-image).active {
  color: #0078FF;
}
.radio label:not(.with-image).active.with-icon .isvg svg path {
  fill: #0078FF;
}
.radio label:not(.with-image).active:before {
  border-color: #0078FF;
}
.radio label:not(.with-image).active:after {
  display: block;
}
.color-picker {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 30px;
}
.color-picker .color-box {
  height: 16px;
  width: 105px;
  border: 1px solid #D8D8D8;
  margin: 0 0 5px 0;
  cursor: pointer;
}
.color-picker .color-box.active + .picker {
  display: block;
}
.color-picker .picker {
  position: absolute !important;
  top: 30px;
  z-index: 1;
  display: none;
}
.color-picker p {
  margin: 0;
}
.color-picker p.name {
  font-size: 11px;
  margin: 0;
  margin-bottom: 4px;
}
.color-picker p.hex {
  font-size: 11px;
  color: #8CA0B5;
}
.field-prop-accent .color-picker .picker {
  right: 0;
}
.toggle-switch {
  display: flex;
  align-items: center;
}
.toggle-switch .react-switch-handle {
  border: 1px solid #0078FF !important;
  box-shadow: 1px 3px 5px #0000005b;
  margin-top: -2px;
}
.toggle-switch .space-right {
  margin-right: 15px;
}
.toggle-switch .space-left {
  margin-left: 15px;
}
.studio-panel.form {
  padding: 0;
  height: calc(100vh - 65px - 50px - 56px);
}
@media (min-width: 700px) {
  .studio-panel.form {
    position: relative;
    height: calc(100vh - 65px - 50px);
  }
}
.no-header .studio-panel.form {
  height: calc(100vh - 50px - 56px);
}
@media (min-width: 700px) {
  .no-header .studio-panel.form {
    height: calc(100vh - 50px);
  }
}
.no-footer .studio-panel.form {
  height: calc(100vh - 65px - 56px);
}
@media (min-width: 700px) {
  .no-footer .studio-panel.form {
    height: calc(100vh - 65px);
  }
}
.no-footer.no-header .studio-panel.form {
  height: calc(100vh - 56px);
}
@media (min-width: 700px) {
  .no-footer.no-header .studio-panel.form {
    height: 100vh;
  }
}
.studio-panel.form .form-container {
  padding: 25px;
  padding-top: 0;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 700px) {
  .studio-panel.form .widget.hide {
    display: none;
  }
}
.studio-panel.form .form-tabs {
  display: none;
  background: white;
  margin: 0 -25px 0 -25px;
  list-style: none;
  padding: 0;
  box-shadow: 2px 0 10px rgba(62, 75, 94, 0.5);
  height: 68px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1;
}
@media (min-width: 700px) {
  .studio-panel.form .form-tabs {
    display: flex;
  }
}
.studio-panel.form .form-tabs .tab {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.studio-panel.form .form-tabs .tab p {
  font-size: 12px;
  font-weight: 600;
  margin: 5px 0 0;
}
.studio-panel.form .form-tabs .tab svg {
  height: 24px;
}
.studio-panel.form .form-tabs .tab svg path {
  fill: #132f59;
}
.studio-panel.form .form-tabs .tab:hover {
  color: #0060cc;
}
.studio-panel.form .form-tabs .tab:hover svg path {
  fill: #0060cc;
}
.studio-panel.form .form-tabs .tab.selected {
  color: #0078FF;
  box-shadow: inset 0 -3px 0 #0078FF;
}
.studio-panel.form .form-tabs .tab.selected svg path {
  fill: #0078FF;
}
.studio-panel.form .panel.hide {
  display: none;
}
.studio-panel.form .widget {
  padding: 15px 0;
  border-bottom: 1px solid #e3e8ed;
}
.studio-panel.form .widget:after {
  content: "";
  display: table;
  clear: both;
}
.studio-panel.form .widget .tooltip svg {
  height: 12px;
}
.studio-panel.form .widget .tooltip path {
  fill: #132f59;
}
.studio-panel.form .widget .widget-header {
  display: flex;
  clear: both;
  line-height: 21px;
  flex-wrap: wrap;
  padding: 10px 0px 5px;
}
.studio-panel.form .widget .widget-header a {
  font-size: 10px;
}
.studio-panel.form .widget .widget-header .widget-help {
  width: 100%;
  color: #90A0B3;
  font-size: 12px;
  margin: 0 0 10px;
}
.studio-panel.form .widget .widget-label,
.studio-panel.form .widget .field-type-subtitle h5 {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 0;
  color: #22262D;
}
.studio-panel.form .widget .widget-label .toggle-switch,
.studio-panel.form .widget .field-type-subtitle h5 .toggle-switch {
  margin-left: 10px;
}
.studio-panel.form .widget .widget-label i,
.studio-panel.form .widget .field-type-subtitle h5 i {
  margin-left: 10px;
}
.studio-panel.form .widget .field-type-subtitle {
  align-items: center;
}
.studio-panel.form .widget .field-type-subtitle .tooltip {
  margin-left: 10px;
}
.studio-panel.form .widget .field-container {
  flex-wrap: wrap;
  padding: 7px 0px;
  opacity: 1;
  transition: opacity 0.2s;
  display: flex;
  position: relative;
}
.studio-panel.form .widget .field-container .field-with-error {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.studio-panel.form .widget .field-container:not(.field-type-subtitle) .tooltip {
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
}
.studio-panel.form .widget .field-container label {
  font-size: 11px;
  font-weight: 600;
}
.studio-panel.form .widget .field-container > label {
  flex-shrink: 0;
  width: 90px;
  margin: 0 10px 0 22px;
}
.studio-panel.form .widget .field-container input {
  flex: 1;
  max-width: 100%;
  padding: 0 10px;
  max-height: 28px;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid #c6d1db;
  background: #fafafa;
  line-height: 28px;
}
.studio-panel.form .widget .field-container input:invalid, .studio-panel.form .widget .field-container input.field-error {
  outline-color: #ff0000;
  border: 1px solid #ff0000;
  background-image: url("baseline-warning-24px.116521cd.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: calc(100% - 5px) center;
}
.studio-panel.form .widget .field-container .error-message {
  color: #ff0000;
  min-width: 100%;
  display: block;
  font-size: 11px;
  font-weight: 900;
  box-sizing: border-box;
  line-height: 1.5;
}
.studio-panel.form .widget .field-container.field-type-text .error-message {
  padding-left: 122px;
}
.studio-panel.form .widget .field-container button:not(.color-box) {
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
  height: auto;
  cursor: pointer;
}
.studio-panel.form .widget .field-container.field-type-apply button {
  margin-left: auto;
}
.studio-panel.form .widget .field-container.field-type-apply button svg {
  height: 18px;
  vertical-align: middle;
}
.studio-panel.form .widget .field-container.field-type-apply button svg path {
  fill: #fff;
}
.studio-panel.form .widget .field-container.field-disabled {
  opacity: 0.5;
}
.studio-panel.form .widget .field-container.field-type-text, .studio-panel.form .widget .field-container.field-type-number {
  line-height: 28px;
}
.studio-panel.form .widget .field-container input[type=number]::-webkit-outer-spin-button,
.studio-panel.form .widget .field-container input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.studio-panel.form .widget .field-container input[type=number] {
  -moz-appearance: textfield;
}
.studio-panel.form .widget .field-container.field-type-help h5 {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: #8CA0B5;
}
.studio-panel.form .widget .field-container.field-type-radio {
  flex-direction: column;
}
.studio-panel.form .widget .field-container.field-type-radio > label {
  width: auto;
}
.studio-panel.form .widget .field-container.field-type-select, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.studio-panel.form .widget .field-container.field-type-select .select, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select {
  flex-basis: 170px;
  font-weight: 500;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control {
  min-height: unset;
  border-color: #c6d1db;
  background: #fafafa;
  cursor: pointer;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control .true__value-container, .studio-panel.form .widget .field-container.field-type-select .select .true__control .true__indicators, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__value-container, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__indicators {
  height: 26px;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control .true__value-container .true__placeholder, .studio-panel.form .widget .field-container.field-type-select .select .true__control .true__indicators .true__placeholder, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__value-container .true__placeholder, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__indicators .true__placeholder {
  font-size: 12px;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control input, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control input {
  line-height: 18px;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control .true__indicator-separator, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__indicator-separator {
  display: none;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control .true__dropdown-indicator, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__dropdown-indicator {
  position: relative;
  right: 6px;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control .true__dropdown-indicator svg, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__dropdown-indicator svg {
  display: none;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control .true__dropdown-indicator::after, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control .true__dropdown-indicator::after {
  content: "";
  position: absolute;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #5a6169;
  top: calc(50% - 2px);
  left: calc(50% - 4px);
}
.studio-panel.form .widget .field-container.field-type-select .select .true__option, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__option {
  cursor: pointer;
}
.studio-panel.form .widget .field-container.field-type-select .select .true__control--menu-is-open .true__dropdown-indicator::after, .studio-panel.form .widget .field-container.field-type-captionsList .captions-group .select .true__control--menu-is-open .true__dropdown-indicator::after {
  transform: rotate(180deg);
}
.studio-panel.form .widget .field-container.samplePublicId {
  display: block;
}
.studio-panel.form .widget .field-container.samplePublicId .radio {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.studio-panel.form .widget .field-container.samplePublicId .radio label {
  width: 30%;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px #dbdbdb;
  cursor: pointer;
  position: relative;
}
.studio-panel.form .widget .field-container.samplePublicId .radio label.active::after {
  content: "";
  position: absolute;
  box-shadow: inset 0px 0px 0px 2px #0078FF;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.studio-panel.form .widget .field-container.samplePublicId .radio img {
  margin: auto;
  width: 100%;
}
.studio-panel.form .widget .field-container.samplePublicId .radio .radio-label {
  display: none;
}
.studio-panel.form .widget .field-container.currentTime button, .studio-panel.form .widget .field-container.addCaption button {
  background: none;
  margin: 0 0 5px 22px;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #0078FF;
}
.studio-panel.form .widget .field-container.currentTime button:hover, .studio-panel.form .widget .field-container.addCaption button:hover {
  color: rgba(0, 120, 255, 0.8);
}
.studio-panel.form .widget .checkboxContainer {
  padding-left: 20px;
  position: relative;
  cursor: pointer;
  line-height: 13px;
}
.studio-panel.form .widget .checkboxContainer .checkmark {
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  box-shadow: inset 0px 0px 1.5px 1px #3f3f3f;
  left: 0;
  top: 0;
}
.studio-panel.form .widget .checkboxContainer .checkmark svg {
  display: none;
}
.studio-panel.form .widget .checkboxContainer .checkmark svg path {
  fill: #0078FF;
}
.studio-panel.form .widget .checkboxContainer input {
  display: none;
}
.studio-panel.form .widget .checkboxContainer input:checked + .checkmark svg {
  display: block;
}
.studio-panel.form .widget .info {
  color: #93a0b1;
}
.studio-panel.form .widget-videoSource .field-container input {
  width: 0;
}
.studio-panel.form .widget-videoSource .field-container.field-type-help {
  margin-left: 22px;
}
.studio-panel.form .widget-videoSource .field-container .error-message {
  text-align: left;
}
.in-console .studio-panel.form .widget-videoSource .field-container.field-prop-videoSource, .in-console .studio-panel.form .widget-videoSource .field-container.field-prop-help, .in-console .studio-panel.form .widget-videoSource .field-container.field-prop-cloudName, .in-console .studio-panel.form .widget-videoSource .field-container.field-prop-samplePublicId {
  display: none;
}
.in-console .studio-panel.form .widget-videoSource .field-container.field-prop-publicId > label {
  margin-left: 0;
}
.studio-panel.form .widget-videoInfo .field-container label {
  margin: 0;
}
.studio-panel.form .widget-poster .field-container.field-prop-image_url {
  display: inline-flex;
  vertical-align: middle;
}
.studio-panel.form .widget-poster .field-container.field-prop-image_url.field-type-text {
  width: calc(100% - 90px);
}
.studio-panel.form .widget-poster .field-container.field-prop-image_url.field-type-button {
  float: right;
}
.studio-panel.form .widget-poster .field-container.field-prop-image_url.field-type-button button {
  margin: 0;
}
.studio-panel.form .widget-poster .field-container.field-prop-image_url.field-type-button .error-message {
  display: none;
}
.studio-panel.form .widget-poster .field-container.field-prop-image_url .error-message {
  padding-left: 22px;
}
.studio-panel.form .widget-poster .field-container input, .studio-panel.form .widget-poster .field-container button {
  margin-left: 22px;
}
.studio-panel.form .widget-poster .field-container.auto, .studio-panel.form .widget-poster .field-container.frame {
  display: flex;
  width: 40%;
}
.studio-panel.form .widget-poster .field-container.frameTime {
  margin-left: 22px;
}
.studio-panel.form .widget-poster .field-container.frameTime input {
  max-height: none;
  line-height: 32px;
  width: 2em;
  text-align: center;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
  text-align: right;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.studio-panel.form .widget-poster .field-container.frameTime input.seconds {
  text-align: left;
}
.studio-panel.form .widget-poster .field-container.frameTime input:focus {
  outline: none;
  font-weight: bold;
}
.studio-panel.form .widget-poster .field-container.frameTime .frame-inputs {
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid #c6d1db;
  background: #fafafa;
}
.studio-panel.form .widget-poster .field-container.frameTime .btns {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}
.studio-panel.form .widget-poster .field-container.frameTime .btns button {
  width: 16px;
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  margin: 2px;
  padding: 0;
}
.studio-panel.form .widget-poster .field-container.frameTime .btns button:hover svg {
  opacity: 0.8;
}
.studio-panel.form .widget-poster .field-container.frameTime .btns button svg {
  height: 16px;
}
.studio-panel.form .widget-poster .field-container.frameTime .btns button.disabled {
  opacity: 0.3;
}
.studio-panel.form .widget-poster .field-container.field-type-posterThumbnail {
  float: right;
  width: 180px;
  max-width: 50%;
  min-height: 80px;
  max-height: 101px;
  padding: 0;
  border: 1px solid #c6d1db;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.studio-panel.form .widget-poster .field-container.field-type-posterThumbnail img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.studio-panel.form .widget-captions .widget-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
}
.studio-panel.form .widget-captions .captions-group {
  width: 100%;
  flex-wrap: wrap;
}
.studio-panel.form .widget-captions .captions-group .captions-single {
  min-width: 100%;
  padding: 7px 0;
  display: flex;
  flex-wrap: wrap;
}
.studio-panel.form .widget-captions .field-prop-captionsList {
  width: 100%;
  padding: 0;
}
.studio-panel.form .widget-captions .field-type-help {
  width: 100%;
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: #8CA0B5;
}
.studio-panel.form .widget-captions .field-type-help:last-of-type {
  padding: 15px 0 0;
}
.studio-panel.form .widget-captions .field-type-text,
.studio-panel.form .widget-captions .captions-group input[type=text] {
  width: 35%;
  flex: auto;
  margin-right: 15px;
}
.studio-panel.form .widget-captions .field-type-select,
.studio-panel.form .widget-captions .captions-group .select {
  min-width: calc(65% - 130px);
  margin-right: 15px;
}
.studio-panel.form .widget-captions .field-prop-captionsLang.field-type-select .select {
  flex-basis: 100%;
}
.studio-panel.form .widget-captions .field-container.field-type-captionsList .captions-group .select {
  flex-basis: auto;
}
.studio-panel.form .widget-captions .field-type-button .btn {
  margin: 0;
}
.studio-panel.form .widget-captions .remove-btn {
  background: none;
  color: #0078FF;
  padding: 0 0 0 22px;
  margin-left: 5px;
}
.studio-panel.form .widget-captions .remove-btn:hover {
  opacity: 0.8;
}
.studio-panel.form .widget-captions .remove-btn svg {
  left: 0;
}
.studio-panel.form .widget-captions .remove-btn svg path {
  fill: #0078FF;
}
.studio-panel.form .widget-captions .field-container.field-type-text .error-message {
  padding-left: 0;
}
.studio-panel.form .widget-autoplay .field-container.field-type-checkbox {
  display: inline-block;
}
.studio-panel.form .widget-autoplay .field-container.field-type-checkbox > label {
  margin: 0 40px 0 0;
  font-weight: 500;
}
.studio-panel.form .widget-logo .field-container.field-type-text label {
  margin: 0;
}
.studio-panel.form .widget-skin .field-container label {
  margin-left: 0;
}
.studio-panel.form .widget-skin .field-prop-skin {
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e3e8ed;
}
.studio-panel.form .widget-skin .field-prop-skin .true__value-container {
  padding-left: 25px;
}
.studio-panel.form .widget-skin .field-prop-skin .true__value-container::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 1.2em;
  height: 2em;
  background: url("theme.7b71dac0.svg") no-repeat center;
  opacity: 0.7;
}
.studio-panel.form .widget-skin .field-type-color {
  display: inline-block;
}
.studio-panel.form .widget-skin .font {
  padding: 20px 0 15px;
  max-width: none;
  border-top: 1px solid #e3e8ed;
}
.studio-panel.form .widget-videoDelivery .field-container.field-type-select label {
  margin-left: 0;
}
.studio-panel.form .widget-videoDelivery .field-container.field-type-checkbox {
  display: inline-block;
}
.studio-panel.form .widget-videoDelivery .field-container.field-type-checkbox .checkboxContainer {
  margin-left: 0;
}
.studio-panel.form .widget-videoDelivery .field-container.field-type-checkbox:not(:last-child) {
  margin-right: 15px;
}
.studio-panel.form .widget-videoDelivery .field-container .radio {
  display: flex;
}
.studio-panel.form .widget-videoDelivery .field-container .radio > label {
  margin-right: 15px;
}
.studio-panel.form .widget-playerSize .field-container {
  display: inline-flex;
  width: 50%;
}
.studio-panel.form .widget-playerSize .field-container.fixed i {
  font-size: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 20px;
}
.studio-panel.form .widget-playerSize .field-container.fixed i::after {
  content: "";
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  border: 2px solid #c6d1db;
  border-radius: 2px;
  position: absolute;
  left: 0;
}
.studio-panel.form .widget-playerSize .field-container.fixed .active i::after {
  border-color: #0078FF;
}
.studio-panel.form .widget-playerSize .field-container.field-type-number {
  width: calc(50% - 8px);
}
.studio-panel.form .widget-playerSize .field-container.field-type-number:not(:last-child) {
  margin-right: 16px;
}
.studio-panel.form .widget-playerSize .field-container.field-type-number label {
  width: auto;
  margin: 0;
  margin-right: 12px;
}
.studio-panel.form .widget-playerSize .field-container.field-type-number input {
  width: 90px;
}
.studio-panel.form .color-picker {
  margin-bottom: 0;
  width: 90%;
}
.studio-panel.form .color-box {
  width: 100%;
  height: 16px;
}
.studio-panel.form .radio {
  width: auto;
}
.studio-panel.form .field-container.field-type-checkbox {
  display: flex;
}
.studio-panel.form .field-container.field-type-checkbox label {
  order: 2;
  margin: 0 10px;
  font-weight: 500;
}
.studio-panel.form .field-container.field-type-checkbox-group {
  display: inline-flex;
  flex-direction: column;
  width: 50%;
}
.studio-panel.form .field-container.field-type-checkbox-group label {
  margin: 0;
  width: auto;
}
.studio-panel.form .field-container.field-type-checkbox-group .checkbox-group {
  margin-top: 5px;
}
.studio-panel.form .field-type-color {
  display: inline-block;
  width: 33.3%;
  vertical-align: top;
}
.studio-panel.form .field-type-color .picker {
  width: 170px !important;
}
.studio-panel.form .field-prop-borderColor {
  float: right;
}
.studio-panel.form input[type=number] {
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 5px;
  width: 80px;
}
.studio-panel.form .field-type-logoThumbnail.field-container {
  position: relative;
}
.studio-panel.form .field-type-logoThumbnail.field-container img {
  position: absolute;
  right: 0;
  bottom: 12px;
  border: 1px solid rgba(62, 75, 94, 0.3);
  padding: 4px;
  border-radius: 4px;
  max-width: 36px;
  max-height: 36px;
  background: repeating-conic-gradient(#c7c7c7 0% 25%, #fcfcfc 0% 50%) 50%/20px 20px;
}
.chapters-notification {
  width: 100%;
  border: 1px solid #D1D6E0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.chapters-notification.error .space-box.icon-wrapper {
  background: #CE190D;
}
.chapters-notification.success .space-box.icon-wrapper {
  background: #22AA00;
}
.chapters-notification .small-desc {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  line-height: 13px;
}
.chapters-notification .space-box {
  width: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
}
.chapters-notification .space-box.icon-wrapper {
  left: 0;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chapters-notification .space-box.close-wrapper {
  right: 0;
  text-align: right;
}
.chapters-notification .space-box.close-wrapper .btn {
  width: 28px;
  height: 28px;
  background: none;
  padding: 0;
}
.chapters-notification .space-box.close-wrapper .btn:hover {
  background: #e8e8e8;
}
.chapters-notification .space-box.close-wrapper .btn svg {
  width: 9px;
}
.chapters-notification .space-box.close-wrapper .btn svg path {
  fill: #333B4C;
}
.chapters-notification .content {
  max-width: 100%;
  margin: 0 40px;
  padding: 10px;
  font-size: 14px;
  line-height: 18px;
}
.chapters-description {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 500;
  color: #8CA0B5;
}

.chapters-group {
  margin-top: 15px;
}
.chapters-group p {
  margin: 15px 0 2px 0;
  font-size: 10px;
}
.chapters-group .btn {
  height: 28px;
  line-height: 28px;
  font-size: 12px;
}
.chapters-group input[type=file] {
  display: none;
}
.chapters-group .field-container.field-type-text {
  display: flex;
}
.chapters-group .field-container.field-type-text > label.file-selector {
  margin: 0;
  flex: 1;
}
.chapters-group .field-container.field-type-text > label.file-selector.empty-state {
  color: #9b9b9b;
}
.chapters-group .btn-import {
  margin-left: 5px;
}
.chapters-group .file-selector-input {
  cursor: pointer;
  flex: 1;
  max-width: 100%;
  padding: 0 10px;
  max-height: 28px;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid #c6d1db;
  background: #fafafa;
  line-height: 28px;
  position: relative;
}
.chapters-group .file-selector-input .loading-icon {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -10px;
}
.chapters-group .file-selector-input .loading-icon svg {
  width: 20px;
  height: 20px;
  fill: #0078FF;
}
.chapters-group .btn-import {
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.chapters-group .btn-import svg {
  left: auto;
}
.chapters-group .add-screen-alternative-text {
  text-align: center;
  font-size: 10px;
  position: relative;
  margin-top: 15px;
}
.chapters-group .add-screen-alternative-text:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #C2C9D6;
  position: absolute;
  left: 0;
  top: 50%;
}
.chapters-group .add-screen-alternative-text span {
  margin: 0 auto;
  background: #fff;
  padding: 0 5px;
  position: relative;
}
.chapters-group .chapters-form .chapter-row {
  max-width: 100%;
  display: flex;
  align-items: center;
}
.chapters-group .chapters-form .chapter-row .field-time {
  width: 55px;
  margin-right: 10px;
}
.chapters-group .chapters-form .chapter-row .field-time input.field-error {
  background-image: none;
}
.chapters-group .chapters-form .chapter-row .field-text {
  flex: 1;
  margin-right: 10px;
}
.chapters-group .chapters-form .chapter-row .btn-remove {
  background: none;
  padding: 15px;
}
.chapters-group .chapters-form .chapter-row .btn-remove:hover {
  background: #e8e8e8;
}
.chapters-group .chapters-form .chapter-row .btn-remove svg {
  width: 9px;
}
.chapters-group .chapters-form .chapter-row .btn-remove svg path {
  fill: #333B4C;
}
.chapters-group .chapters-form .btn-add-row {
  background: none;
  color: #333B4C;
  margin-top: 10px;
}
.chapters-group .chapters-form .btn-add-row:hover {
  text-decoration: underline;
}
.chapters-group .chapters-form .btn-add-row svg {
  width: 12px;
}
.chapters-group .chapters-form .btn-add-row svg path {
  fill: #333B4C;
}
.chapters-group .chapters-actions-panel {
  width: 100%;
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
}
.chapters-group .chapters-actions-panel .btn-save {
  width: calc(50% - 10px);
}
.studio-panel.preview {
  background: #f2f3f4;
  padding: 0;
  display: flex;
  overflow: auto;
}
.studio-panel.preview .cld-video-player {
  margin: auto;
  display: none;
  opacity: 0;
}
.studio-panel.preview .cld-video-player:last-of-type {
  display: block;
}
.studio-panel.preview .cld-video-player.ready {
  opacity: 1;
}
.studio-panel.preview .cld-video-player:not(.ready) video {
  position: relative;
  height: auto;
}
.studio-panel.preview .video-player-wrp {
  display: flex;
  margin: auto;
  width: 100%;
  max-height: 100%;
}
.studio-panel.preview .video-player-wrp.loading:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("loading-spin.b2812838.svg") no-repeat center;
  background-size: 20%;
  opacity: 0.5;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

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

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

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

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

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

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

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

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

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

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

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

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

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

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

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

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

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

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

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

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

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

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

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

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
  background-color: white;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Inter", sans-serif;
}

.h1, h1 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 25px;
}

.h2, h2 {
  font-size: 32px;
}

.h3, h3 {
  font-size: 24px;
}

.h4, h4 {
  font-size: 20px;
}

.h5, h5 {
  font-size: 18px;
}

.h6, h6 {
  font-size: 16px;
}

a {
  text-decoration: none;
  transition: color 0.3s;
  color: #0078FF;
}
a:hover {
  color: #0078FF;
  text-decoration: underline;
}

code {
  font-size: 12px;
}

.container {
  width: 100%;
  margin: 0 auto;
  background: #a6cac2;
}

.section {
  align-items: center;
  background: #fff;
  z-index: 0;
}
.section h1 {
  color: #fff;
  background: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: 27px;
  text-transform: capitalize;
  text-align: center;
  padding: 10px 20px;
}
.section:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  outline: 22px solid #000;
  outline-offset: -22px;
}
.section:nth-child(even) h1 {
  border: 2px solid #fff;
}
.section .text-box {
  font-size: 14px;
  color: #000;
}
.section .text-box .docs-link {
  font-size: 12px;
  display: block;
  margin-right: 0;
  margin-left: auto;
  margin: 10px 0 -10px auto;
  max-width: fit-content;
}
.section .highlight-box {
  background: #dedede;
  box-shadow: 6px 6px 0 #000;
}

@media (min-width: 700px) {
  .desktop-hidden {
    display: none;
  }
}
@media (min-width: 577px) {
  .container {
    width: 577px;
    position: relative;
  }

  .section h1 {
    font-size: 38px;
    padding: 0 20px;
    line-height: 77px;
  }
  .section .text-box {
    font-size: 16px;
  }
}
@media (min-width: 765px) {
  .container {
    width: 765px;
  }
}
@media (min-width: 1024px) {
  .container {
    width: 1024px;
  }
}
.btn {
  display: inline-block;
  height: 43px;
  line-height: 43px;
  padding: 0 20px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
}
.btn:disabled, .btn.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn:disabled:hover, .btn.btn-disabled:hover {
  cursor: default !important;
}

.btn-primary,
.btn-secondary {
  font-weight: 600;
  background: #0078FF;
}
.btn-primary:not(:disabled):hover,
.btn-secondary:not(:disabled):hover {
  background: #1a86ff;
}

.btn-ghost {
  padding: 0 10px;
  font-weight: 600;
  background: transparent;
  color: #0078FF;
}
.btn-ghost:not(:disabled):hover {
  color: #0078FF;
  background: #f4f4f4;
}

.btn-icon {
  padding: 0 10px 0 30px;
  position: relative;
}
.btn-icon svg {
  height: 18px;
  margin-right: 5px;
  position: absolute;
  top: calc(50% - 9px);
  left: 10px;
}
.btn-icon svg path {
  fill: #fff;
}

/*# sourceMappingURL=app.0c271395.css.map */