/* 
## $component-height is used to
## scale the switch component.
## All other dimensions will be
## automatically calculated using
## this value as a base.
## Default = 30px
*/
.switchy input {
  display: none;
}

.switchy * {
  box-sizing: border-box;
  vertical-align: middle;
}

.switchy {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.switchy span {
  display: inline-block;
  width: 48px;
  height: 30px;
  position: relative;
  border-radius: 15px;
  border: 1px solid #cecece;
  transition: all .6s linear;
}

.switchy input:checked ~ span {
  background: #4cd964;
  transition: all .2s ease;
}

.switchy span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 15px;
  background: #FFF;
  transition: all .4s ease;
}

.switchy span:after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background: #FFF;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 1px;
  left: 1px;
  transition: all .2s linear;
}

.switchy input:checked ~ span:after {
  transform: translate3d(18px, 0, 0);
}

.switchy input:checked ~ span:before {
  transform: scale3d(0, 0, 0);
}

/*
## Themes #############################
*/
.switchy[data-tint="red"] input:checked ~ span {
  background: #ff3b30;
}

.switchy[data-tint="orange"] input:checked ~ span {
  background: #ff9500;
}

.switchy[data-tint="yellow"] input:checked ~ span {
  background: #ffcc00;
}

.switchy[data-tint="teal-blue"] input:checked ~ span {
  background: #5ac8fa;
}

.switchy[data-tint="blue"] input:checked ~ span {
  background: #007aff;
}

.switchy[data-tint="purple"] input:checked ~ span {
  background: #5856d6;
}

.switchy[data-tint="pink"] input:checked ~ span {
  background: #ff2d55;
}

/*
## end Themes ###########################
*/
/*
## Stretch effect #######################
*/
.switchy input:active ~ span:after {
  width: 33px;
}

.switchy input:checked:active ~ span:after {
  transform: translate3d(11px, 0, 0);
}

/* 
## end Stretch effect ###################
*/
/*
## Scaling ##############################
*/
.switchy-sm span {
  width: 36px;
  height: 22.5px;
  border-radius: 11.25px;
}

.switchy-sm span:before {
  border-radius: 11.25px;
}

.switchy-sm span:after {
  width: 19.5px;
  height: 19.5px;
  border-radius: 9.75px;
}

.switchy-sm input:checked ~ span:after {
  transform: translate3d(13.5px, 0, 0);
}

.switchy-sm input:active ~ span:after {
  width: 24.75px;
}

.switchy-sm input:checked:active ~ span:after {
  transform: translate3d(8.25px, 0, 0);
}

.switchy-lg span {
  width: 60px;
  height: 37.5px;
  border-radius: 18.75px;
}

.switchy-lg span:before {
  border-radius: 18.75px;
}

.switchy-lg span:after {
  width: 32.5px;
  height: 32.5px;
  border-radius: 16.25px;
}

.switchy-lg input:checked ~ span:after {
  transform: translate3d(22.5px, 0, 0);
}

.switchy-lg input:active ~ span:after {
  width: 41.25px;
}

.switchy-lg input:checked:active ~ span:after {
  transform: translate3d(13.75px, 0, 0);
}

/*
## end Scaling ##########################
*/
/*
## States ###############################
*/
.switchy input[disabled] ~ span:before {
  background: #f2f2f2;
}

.switchy input[disabled] ~ span:after {
  background: #f2f2f2;
}

/* 
## end States ###########################
*/
/*
## Firefox fix ##########################
## Firefox will not release :active state
## after dragging is complete meaning that
## the stretch effect can not be used.
## If JavaScript dragging is NOT enabled,
## this can be safely removed.
*/
@media  {
  .firefox .switchy input:checked:active ~ span:after {
    transform: translate3d(18px, 0, 0);
  }
}

/* 
## end Firefox fix #####################
*/
[type="checkbox"]:checked + label:before {
  border-right: 2px solid #0042ff;
  border-bottom: 2px solid #0042ff;
}

/*
    Beta Styles
*/
.beta_bar {
  background: #0042ff;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 5px;
  z-index: 1;
}

.beta_bar .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  margin: 0;
}

.beta_bar .row p {
  margin: 0;
}

.beta_bar .row p a {
  text-decoration: underline;
  color: #c8dfff;
}

.container {
  z-index: 1;
}

.master-z-index {
  z-index: 99999;
}

.admin .container {
  z-index: unset;
}

/*
    END Beta Styles
*/
body, html {
  background: #F6F6F6;
}

nav.header {
  background: white;
  box-shadow: none !important;
}

.mobileMenu .mobileMenu__burger {
  color: #514747;
}

.red.lighten-1 {
  background-color: #ffeeee !important;
  color: #7f0000 !important;
  border: 1px solid #c20000;
}

.primary.lighten-1 {
  background-color: #0042ff;
}

.blue {
  background-color: #0042ff !important;
}

#block-alert {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 22px;
}

#block-alert .card-panel {
  padding: 20px 20px;
  padding-bottom: 23px;
}

.shadow-none {
  box-shadow: none !important;
}

/*
    Vanilla Calendar
*/
.vanilla-calendar {
  z-index: 1;
}

#searchNewChannel {
  top: 10% !important;
}

#searchNewChannel .row .col {
  padding: 0;
}

.modal {
  background: #fff;
  /* 
    Buttons
  */
}

.modal #addCardUserButton {
  border-radius: 2px;
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.21px;
  line-height: 19px;
  text-align: center;
  padding: 5px 22px;
  cursor: pointer;
  margin-right: 10px;
}

.modal h5 {
  margin: 0;
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.77px;
  line-height: 25px;
}

.modal .row {
  position: relative;
}

.modal .row .col.s8.m6 {
  width: 100%;
  margin: 0;
  margin-top: 10px;
  padding: 0 !important;
}

.modal .row .col.s8.m6 input {
  width: -webkit-fill-available;
  padding: 9px 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fcfcfc;
  font-size: 16px;
  height: auto;
  margin: 0;
}

.modal .row #place_search_btn {
  top: 13px;
  right: 15px;
  background-color: #eff3ff !important;
  border: 1px solid #0042FF;
  color: #445a96;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.31px;
  line-height: 14px;
  text-align: center;
  padding: 9px 16px;
  border-radius: 3px;
  position: absolute;
  cursor: pointer;
  text-transform: capitalize;
  height: auto;
  box-shadow: none;
}

.modal .row .col.s12.m12.l6 {
  float: unset;
  width: 100%;
  padding: 0;
  padding-top: 70px;
}

.modal .row #place_selected {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
}

.modal .row .collapsible li#previously_used_placements_section.active,
.modal .row .collapsible li#search_placement_channel_section.active,
.modal .row .collapsible li#search_placement_video_section.active,
.modal .row .collapsible li#bulk_urls_section.active {
  background-color: #eff3ff !important;
  border: 1px solid #0042FF;
  width: 100%;
}

.modal .row .collapsible li#previously_used_placements_section.active .collapsible-header,
.modal .row .collapsible li#search_placement_channel_section.active .collapsible-header,
.modal .row .collapsible li#search_placement_video_section.active .collapsible-header,
.modal .row .collapsible li#bulk_urls_section.active .collapsible-header {
  background: unset !important;
  display: block;
  width: 100%;
}

.modal .row .collapsible #bulk_urls_section {
  flex-wrap: wrap;
  width: -webkit-fill-available;
}

.modal .row .collapsible #bulk_urls_section .bulk_container {
  width: -webkit-fill-available;
}

.modal .row .collapsible ._collection {
  box-shadow: none;
  margin: 0;
  position: absolute;
  top: 350px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 300px;
  width: -webkit-fill-available;
  left: 0;
  margin: 0 10px !important;
}

.modal .row .collapsible ._collection li {
  display: flex;
  flex-wrap: wrap;
}

.modal .row .collapsible ._collection li .collapsible-header {
  font-weight: bold;
  font-weight: bold;
  line-height: 20px;
  padding: 15px;
}

.modal .row .collapsible ._collection li .collapsible-body {
  padding: 0px;
  display: block;
  width: 100%;
}

.modal .row #place_search_result #search_placement_video_section .collection, .modal .row #place_search_result #search_placement_channel_section .collection {
  box-shadow: none;
  margin: 0;
  position: absolute;
  top: 350px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 250px;
  width: -webkit-fill-available;
  left: 0;
  margin: 0 10px !important;
  margin: 0 !important;
}

.modal .row #place_search_result #search_placement_video_section .collection li, .modal .row #place_search_result #search_placement_channel_section .collection li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  display: flex;
  align-items: start;
  padding: 17px;
  margin-top: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fdfdfd;
  gap: 12px;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
}

.modal .row #place_search_result #search_placement_video_section .collection li .collapsible-header, .modal .row #place_search_result #search_placement_channel_section .collection li .collapsible-header {
  font-weight: bold;
  font-weight: bold;
  line-height: 20px;
  padding: 15px;
}

.modal .row #place_search_result #search_placement_video_section .collection li .collapsible-body, .modal .row #place_search_result #search_placement_channel_section .collection li .collapsible-body {
  padding: 0px;
  display: block;
  width: 100%;
}

.modal .row #place_search_result #search_placement_video_section .collection li .item-data .description, .modal .row #place_search_result #search_placement_channel_section .collection li .item-data .description {
  line-height: 18px;
  line-height: 18px;
  margin-bottom: 10px;
  color: #5d5d5d;
}

.modal .row #place_search_result #search_placement_video_section .collection li .item-data label, .modal .row #place_search_result #search_placement_channel_section .collection li .item-data label {
  font-weight: 500;
}

.modal .row #place_search_result #search_placement_video_section .collection li .statistics, .modal .row #place_search_result #search_placement_channel_section .collection li .statistics {
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.modal .row #place_search_result #search_placement_video_section .collection li .statistics span, .modal .row #place_search_result #search_placement_channel_section .collection li .statistics span {
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #dadada;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 405;
  color: #282828;
  width: -moz-fit-content;
  width: fit-content;
}

.modal #search_placeholders_add_btn {
  border-radius: 2px;
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.21px;
  line-height: 19px;
  text-align: center;
  padding: 5px 22px;
  cursor: pointer;
  margin-right: 10px;
}

.modal#modal_search_placement .row {
  margin: 0;
}

.modal#modal_search_placement #place_search_btn {
  right: 4px;
}

#modalAddPaymentMethod h5 {
  margin-bottom: 10px !important;
}

#modal_campaign_mass_tags .modal-content {
  padding: 0 !important;
}

#modal_campaign_mass_tags .modal-content #massTagsLabel {
  color: #000;
  font-family: Founders Grotesk;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.17px;
  line-height: 22px;
  margin: 0;
  width: 100%;
  text-align: left;
  padding: 18px 23px 16px;
  border-bottom: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

#modal_campaign_mass_tags .modal-content #mass_tags_value {
  height: calc(100% - 100px) !important;
  border-radius: 4px;
  padding: 5px 10px;
  margin: 20px;
  width: calc(100% - 40px);
}

.new-campaign-page .modal .col.s12.m12.l6 {
  position: relative;
}

.swal2-popup {
  padding: 0;
}

.swal2-popup .swal2-title {
  color: #000;
  font-family: Founders Grotesk;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.17px;
  line-height: 22px;
  margin: 0;
  width: 100%;
  text-align: left;
  padding: 18px 20px 16px;
  border-bottom: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.swal2-popup .swal2-html-container {
  text-align: left;
  padding: 15px 20px;
}

.swal2-popup .swal2-actions {
  display: flex;
  width: 100%;
  padding: 18px 23px 16px;
  margin: 0;
  gap: 5px;
}

.swal2-popup .swal2-actions button {
  border-radius: 3px;
  border: none;
  padding: 8px 16px;
  padding-bottom: 9px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 19.47px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0;
}

.swal2-popup .swal2-actions button.swal2-cancel {
  background-color: #0042FF;
}

.home .swal2-popup .swal2-header {
  padding: 18px 23px 16px;
  border-bottom: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.home .swal2-popup .swal2-header h2 {
  color: #000;
  font-family: Founders Grotesk;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.17px;
  line-height: 22px;
  margin: 0;
  width: 100%;
  text-align: left;
}

.home .swal2-popup .swal2-header .swal2-icon {
  display: flex;
  margin: 0;
  margin-bottom: 10px;
  width: 26px;
  height: 26px;
  border: .15em solid #0042FF;
  background: #0042ff1c;
}

.home .swal2-popup .swal2-header .swal2-icon::before {
  font-size: 1.35em;
  color: #0042FF;
}

.home .swal2-popup .swal2-header .swal2-warning {
  border-color: #de3333;
  background: rgba(255, 0, 0, 0.11);
}

.home .swal2-popup .swal2-header .swal2-warning::before {
  color: #de3333;
}

.home .swal2-popup .swal2-content .swal-custom-btn-container {
  display: flex;
  margin-top: 0 !important;
  padding: 5px 15px 11px;
}

.home .swal2-popup .swal2-content .swal-custom-btn-container button {
  width: 100%;
}

.campaign-bottom-panel {
  box-shadow: none;
  background: #fff;
  position: fixed;
  width: 100%;
  border-top: 1px solid #e8e8e8;
}

.campaign-bottom-panel button {
  display: inline-block;
  text-transform: capitalize;
  letter-spacing: -0.2px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 2px;
  box-shadow: none;
}

.campaign-bottom-panel .col.s12.right-align {
  display: flex;
  gap: 5px;
  padding: 0;
}

.campaign-bottom-panel .cancelAutoPromote {
  border: 1px solid #d8d8d8;
  border-radius: 2.8px;
  background-color: #FBFAFA;
  color: #000 !important;
  line-height: 33px;
}

.campaign-bottom-panel .btn-white-green.updateAutoPromote {
  box-shadow: none;
  background: #32852124;
  border: 1px solid #1e8f07;
  color: #000;
  line-height: 33px;
  letter-spacing: -0.1px;
}

.campaign-bottom-panel .btn-white-green.updateAutoPromote:hover {
  background: #53db376e;
}

.campaign-bottom-panel .btn-white-green.updateAutoPromote:hover
.disabledAutoPromote {
  border: 0.95px solid #D5D5D5;
  box-shadow: none;
}

.campaign-bottom-panel .btn {
  text-align: center;
  box-shadow: none;
}

.green {
  background-color: #2350f1 !important;
  text-transform: capitalize;
  font-size: 15px;
  letter-spacing: -0.3px;
}

.red.darken-1 {
  width: 100%;
  background-color: #ffe9e9 !important;
  border: 1px solid #f4a8a6;
  color: #000 !important;
}

.red.darken-1 .btn {
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  background-color: #F4F9FF !important;
  width: 100%;
  color: #2979E6;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
  min-width: 200px;
}

[type="radio"]:checked + label:after, [type="radio"].with-gap:checked + label:after {
  background-color: #4169e1;
}

[type="radio"]:checked + label:after, [type="radio"].with-gap:checked + label:before, [type="radio"].with-gap:checked + label:after {
  border: 2px solid #86a4ff;
}

@keyframes spinner-bulqg1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes spinner-oaa3wk {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

.btn, .btn-large, .btn-flat, button {
  border-radius: 4px;
}

.btn-dual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-dual .btn {
  width: 100%;
  border-radius: 4px;
  background-color: #0042ff;
  font-weight: 500;
  letter-spacing: -0.51px;
  box-shadow: none !important;
  height: 46px;
  font-size: 17px;
  text-transform: capitalize;
}

.btn-dual:after {
  content: none;
}

.btn.grey {
  height: auto !important;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FDFDFD !important;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
  color: #070707;
  padding: 10px;
  padding-bottom: 11px;
  display: block;
  box-shadow: none !important;
  text-transform: capitalize;
}

.btn-full {
  background: #244FF2;
  width: 100%;
  font-weight: 500;
}

.btn-dual .btn:hover {
  background-color: #002caa;
}

.campaign-bottom-panel .btn:hover {
  background-color: #002caa;
}

.btn.grey:hover {
  background-color: #f5f5f5 !important;
}

.btn-secondary {
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  background-color: #F4F9FF !important;
  width: 100%;
  color: #2979E6;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #0c71fe !important;
  color: #fff !important;
}

.btn-floating {
  border-radius: 50%;
}

.btn-floating i {
  color: #5c5c5c;
}

.mt-2 {
  margin-top: 10px;
}

.mt-4 {
  margin-top: 20px;
}

.l-mobile {
  display: none;
}

.s-tablet {
  display: none;
}

.l-tablet {
  display: none;
}

header .side.mobile {
  display: none;
}

.new-campaign-page header .side.mobile {
  display: none !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.chip {
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  background-color: #FFFFFF;
  color: #505050;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.22px;
  line-height: 16px;
  padding: 6px 12px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  height: unset;
  line-height: 14px;
}

.chip .close {
  line-height: 18px;
}

.collection a.collection-item {
  color: #5c5c5c;
}

input:not([type]), input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
  background-color: #f3f3f3;
  border-radius: 4px;
  padding: 0 5px;
  width: -webkit-fill-available;
}

input:not([type]).validate + label, input[type=text].validate + label, input[type=password].validate + label, input[type=email].validate + label, input[type=url].validate + label, input[type=time].validate + label, input[type=date].validate + label, input[type=datetime].validate + label, input[type=datetime-local].validate + label, input[type=tel].validate + label, input[type=number].validate + label, input[type=search].validate + label, textarea.materialize-textarea.validate + label {
  padding-left: 5px;
}

.input-field label {
  top: 0.2rem;
}

.optional-label {
  color: #4169e1;
}

select.browser-default {
  background-color: #f3f3f3;
  border-radius: 4px;
}

.card-panel {
  border-radius: 10px;
  margin-left: -.75rem;
  margin-right: -.75rem;
}

.card-style {
  margin: 0 15px 30px;
  border-radius: 20px;
  padding-bottom: 15px;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.card-style-flow {
  margin: 0 15px 30px;
  border-radius: 20px;
  padding-bottom: 15px;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 1px 15px;
}

.bg-white {
  background: white;
}

.shadow {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1) !important;
  border-radius: 10px;
}

.font-14 {
  font-size: 14px !important;
}

.opacity-80 {
  opacity: .8 !important;
}

.font-600 {
  font-weight: 600;
}

.rounded-sm {
  border-radius: 12px !important;
}

.bg-light {
  background-color: whitesmoke !important;
  border: 4px solid white;
}

.p-1 {
  padding: 1em;
}

.p-2 {
  padding: 2em;
}

@media only screen and (max-width: 600px) {
  .s-p-0 {
    padding: 1em 0 !important;
  }
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.title-header, .s-title-header {
  margin: 0;
  margin-bottom: 10px;
  padding: 0.5em;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-header h5, .s-title-header h5 {
  font-size: 1.1rem;
  font-weight: 500;
}

@media only screen and (max-width: 600px) {
  .s-title-header {
    display: block;
    justify-content: normal;
    align-items: normal;
  }
}

h5 .pros-circle {
  font-size: 11px;
}

div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
  display: inline-block !important;
  height: 45px;
}

.filter-btn {
  display: inline-block !important;
  margin-right: 10px;
  padding: 0 1rem;
  text-transform: none;
}

.filter-btn.lighten-1 {
  background: white;
  color: #6e766e;
}

.filter-btn.darken-3 {
  background: #4169e1;
  color: white;
}

.shadow-s {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1) !important;
}

.td :last-child {
  border-bottom: none;
}

.table-header {
  background: linear-gradient(to bottom, #656D78, #434A54);
  color: white;
}

.table-header th {
  border-right: 1px solid #ffffff1c;
}

.table-header td, .table-header th {
  padding: 15px 11px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 0;
  border-bottom: 1px solid #bec8ce36;
  font-weight: 500;
}

.table-header th:first-child {
  border-top-left-radius: 10px;
}

.table-header th:last-child {
  border-top-right-radius: 10px;
}

.rounded {
  border-radius: 20px !important;
}

#configurationTabs, .configurationTabs {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#configurationTabs .tab, .configurationTabs .tab, #ad_preview_tabs .tab {
  background: whitesmoke;
}

#configurationTabs .tab a, .configurationTabs .tab a, #ad_preview_tabs .tab a {
  color: #646060;
  border-right: 1px solid white;
}

#configurationTabs .indicator, .configurationTabs .indicator, #ad_preview_tabs .indicator {
  background: #abb8c3;
  margin-right: 2px;
}

@media only screen and (max-width: 600px) {
  .s-tabs {
    height: auto;
    flex-direction: column;
  }
  .s-tabs .indicator {
    display: none;
  }
}

.tabs .tab {
  background-color: whitesmoke;
}

.tabs .tab a {
  color: #646060;
}

.tabs .tab a.active, .tabs .tab a:hover {
  background-color: #4169e1;
  color: #ffffff !important;
}

.tabs .indicator {
  background-color: #abb8c3;
  margin-right: 2px;
}

.sublist {
  background: whitesmoke;
  padding: 1px 10px 25px 20px;
  border-radius: 10px;
  margin: 10px 10px 25px 0px;
}

.sticky {
  position: fixed;
  top: 65px;
  width: 486.88px !important;
}

.slideout {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  transition: left .3s ease-out;
  z-index: 9999;
  background-color: #02020245;
}

.slideout.active {
  left: 0;
}

.handle {
  position: absolute;
  top: 10%;
  left: -25px;
  width: 40px;
  height: 100px;
  border-radius: 7px;
  background: #ff9800;
  cursor: pointer;
}

.handle p {
  /* IE 9 */
  transform: rotate(90deg);
  margin-top: -32px;
  height: 48px;
  margin-right: 40px;
  font-weight: 600;
}

.auth_page_body .section {
  margin: 20px auto;
  max-width: 560px;
  padding: 25px;
  background: #fff;
  border-radius: 4px;
  width: 100% !important;
  box-shadow: none !important;
  border-radius: 4px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.auth_page_body .section h5 {
  margin: 0;
  font-size: 35px;
  margin-top: 9px;
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
}

.auth_page_body .mobileMenu {
  display: none;
}

.auth_page {
  margin: 20px auto;
  width: 90%;
  max-width: 560px;
  padding: 25px;
  background: #fff;
  border-radius: 4px;
  width: 90% !important;
}

.auth_page #autocomplete-trap {
  display: none;
}

.auth_page .auth label {
  font-size: 14px;
  color: #676767;
  margin-bottom: 1px;
}

.auth_page .auth .row:nth-child(1) h5 {
  margin: 0;
  font-size: 35px;
  margin-top: 9px;
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
}

.auth_page .auth .row input {
  color: #292828;
  width: 100%;
  background: #fafafa;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.45px;
  border: .95px solid #e5e5e5;
  border-radius: 5px;
  border-bottom: 2px solid #d8d8d8;
  margin-bottom: 0;
  padding: 15px 20px;
  height: auto;
}

.auth_page .auth .row label {
  transform: translateY(-130%);
  -webkit-transform: translateY(-130%);
  left: 8px;
}

.auth_page .auth .row button {
  border-radius: 3px;
  background-color: #0042FF !important;
  border: none;
  padding: 8px 23px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
}

.auth_page .auth .g-btn {
  margin-top: 50px;
}

.auth_page .auth .g-btn .col {
  display: flex;
  align-items: center;
  flex-flow: wrap-reverse;
  margin-bottom: 0 !important;
}

.auth_page .auth .g-btn .col .btn {
  text-transform: none;
  color: #000;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 3px;
  text-transform: none;
  color: #000;
  padding: 10px;
  text-decoration: unset;
  background: #f9f9f9;
  border: 1px solid #ededed;
  display: flex;
  align-items: center;
  text-transform: none;
  color: #000;
  padding: 7px 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.auth_page .auth .g-btn .col .btn .left {
  height: 25px;
}

.auth_page .auth .g-btn .col .btn .left img {
  width: 25px;
  margin: 0 !important;
  margin-right: 8px !important;
}

.auth_page .auth .g-btn .col .btn p {
  margin: 0;
  margin-top: 7px;
}

.auth_page .auth form .row:nth-child(3) .col, .auth_page .auth form .row:nth-child(2) .col {
  display: flex;
  align-items: center;
  flex-flow: wrap-reverse;
}

.auth_page .auth form .row:nth-child(4) .col:nth-child(1) {
  color: #3d3b3b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.38px;
  line-height: 18px;
  margin-top: 20px;
  display: block;
  margin-bottom: 20px;
  margin-top: 5px;
  font-size: 15px;
}

.handle-close {
  text-align: right;
  display: none;
}

.handle-close i {
  padding: 0;
  margin: 5%;
  background-color: #ff9800;
  border-radius: 30px;
  color: #080808;
  text-align: center;
}

.active .handle-close {
  display: block;
}

.slide-Body {
  position: absolute;
  background: white;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1) !important;
  border-radius: 10px;
}

.btn-white-green {
  background-color: #4169e1;
  color: #FFFFFF;
}

.btn-white-green:hover {
  background-color: #e7e7e7;
}

.btn-white-green:focus {
  background-color: #e7e7e7;
}

.spinner-white-only {
  border-color: white;
}

.spinner-primary {
  border-color: #4169e1;
}

nav ul a {
  color: #514747;
  list-style: none;
  padding: 0 13px;
  margin: unset;
  display: flex;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.dropdown-content li > a, .dropdown-content li > span {
  color: #5c5c5c;
}

#fixedbutton {
  text-align: center;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: white;
  padding: 10px 0;
  box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.06), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
}

#fixedbutton a {
  width: 94% !important;
  font-family: 'Founders Grotesk';
  font-weight: 500;
  font-size: 17px;
  padding-left: 10px;
  box-shadow: none;
}

#fixedbutton a i {
  margin-right: 4px;
  font-size: 19px;
}

.link-now {
  background: #4169e1;
  color: white;
  padding: 0px 10px 0px 10px;
  border-radius: 10px;
  box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  font-size: 12px;
}

.link-now i {
  font-size: 18px;
  margin-right: 5px;
}

.report-btn {
  background: #4169e1;
  color: white;
  padding: 5px 10px 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  white-space: nowrap;
  flex-direction: row-reverse;
  display: flex;
}

.report-btn i {
  font-size: 18px;
  margin-left: 5px;
}

.ad-views {
  background: #4aaf50;
  color: white;
  padding: 6px;
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 600px) {
  .s-left-align {
    text-align: left !important;
    padding-left: 20px;
  }
}

.video-not-displayed-bellow {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #9e9e9e;
}

@media only screen and (max-width: 600px) {
  .video-not-displayed-bellow {
    justify-content: center;
  }
}

input:not([type]) + label:after, input[type=text] + label:after, input[type=password] + label:after, input[type=email] + label:after, input[type=url] + label:after, input[type=time] + label:after, input[type=date] + label:after, input[type=datetime] + label:after, input[type=datetime-local] + label:after, input[type=tel] + label:after, input[type=number] + label:after, input[type=search] + label:after, textarea.materialize-textarea + label:after {
  top: 58px;
}

/* Global Select */
.select-wrapper input.select-dropdown {
  padding: 0;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: 11px;
  border: 1.08px solid #CDCDCD;
  border-radius: 4px;
  color: #292929;
  font-size: 15.14px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 19px;
  -webkit-appearance: none;
  min-width: 70px;
  max-width: 120px;
  cursor: pointer;
  height: 26px;
  margin-bottom: 0;
  background: #fff;
}

.admin_only {
  display: none !important;
}

.admin_only.active {
  display: block !important;
}

.admin_only.admin_only_flex.active {
  display: flex !important;
}

.admin_only.admin_only_table_cell.active {
  display: table-cell !important;
}

.admin_panel {
  background: #fff;
  padding: 14px 20px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.admin_panel .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.admin_panel .top .switchy {
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.admin_panel .top .admin_actions {
  display: none;
  align-items: center;
  gap: 13px;
}

.admin_panel .top .admin_actions button {
  border-radius: 3px;
  background-color: #0042FF;
  border: none;
  padding: 8px 16px;
  padding-bottom: 9px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 19.47px;
  text-align: center;
  display: flex;
  align-items: center;
}

.admin_panel .top .admin_actions button:hover {
  background-color: #0036cf;
}

.admin_panel .top .admin_actions.active {
  display: flex;
}

.admin_panel .bottom {
  overflow-x: scroll;
  display: none;
  margin-top: 10px;
}

.admin_panel .bottom table {
  width: 1650px;
}

.admin_panel .bottom tr th {
  background: #f4f4f4;
  font-size: 15px;
  font-weight: 500;
  padding: 4px 6px;
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}

.admin_panel .bottom tr th:last-child {
  border-right: 1px solid #e6e6e6;
}

.admin_panel .bottom tr td {
  background: #fff;
  padding: 5px 13px;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}

.admin_panel .bottom tr td:hover {
  background: #f9f9f9;
}

.admin_panel .bottom tr td:last-child {
  border-right: 1px solid #e6e6e6;
}

.admin_panel .bottom.active {
  display: block;
}

/* Home */
#campaignsListPage {
  padding-bottom: 0;
  z-index: 1;
  position: relative;
}

#campaignsListPage .row {
  margin-bottom: 0;
}

#campaignsListPage .row .p-0 {
  padding: 0;
}

#campaignsListPage .card-body .side:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 25px;
}

#campaignsListPage .card-body .side:nth-child(1) .filter_campaign_status_wrap {
  position: relative;
}

#campaignsListPage .card-body .side:nth-child(1) .filter_campaign_status_wrap .button {
  position: absolute;
  right: 0;
  top: 0;
  background: #234EF2;
  width: 27px;
  height: 27px;
  border-radius: 50px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: none;
}

#campaignsListPage .card-body .side:nth-child(1) .filter_campaign_status_wrap input.select-dropdown {
  padding-right: 0;
}

#campaignsListPage .card-body .side:nth-child(1) .filter_campaign_status_wrap .caret {
  display: none;
}

#campaignsListPage .card-body .side:nth-child(1) .filter_campaign_status_wrap.rounded input.select-dropdown {
  border-radius: 50px;
}

#campaignsListPage .card-body .side:nth-child(1) h1 {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 37.85px;
  font-weight: 600;
  letter-spacing: -1.21px;
  line-height: 35px;
  margin: 0;
  margin-bottom: 4px;
}

#campaignsListPage .card-body .side:nth-child(1) .filter_wrap {
  height: 45px;
  display: flex;
  align-items: center;
}

#campaignsListPage .card-body .side:nth-child(2) .add-campaign-btn {
  border-radius: 3px;
  background-color: #0042FF;
  border: none;
  padding: 8px 16px;
  padding-bottom: 9px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 19.47px;
  text-align: center;
  display: flex;
  align-items: center;
}

#campaignsListPage .card-body .side:nth-child(2) .add-campaign-btn button {
  background: unset;
  border: unset;
  padding: 0;
}

#campaignsListPage .card-body .side:nth-child(2) .add-campaign-btn button img {
  margin-top: 1px;
  margin-left: 5px;
}

#campaignsListPage .card-body .side:nth-child(2) .add-campaign-btn:hover {
  background: #0036cf;
}

#campaignsListPage .campaignsDatePickerContainer {
  width: auto;
  margin: 0;
  margin-right: 10px;
}

#campaignsListPage .campaignsDatePickerContainer .button_filter_campaign_sort {
  background: #234EF2;
  width: 27px;
  height: 27px;
  border-radius: 3px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: none;
  position: absolute;
}

#campaignsListPage .campaignsDatePickerContainer #campaignsDatepicker {
  padding: 0;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: 11px;
  border: 1.08px solid #CDCDCD;
  border-radius: 4px;
  color: #292929;
  font-size: 15.14px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 19px;
  -webkit-appearance: none;
  min-width: 180px;
  cursor: pointer;
  height: 26px;
  margin-bottom: 0;
  background: #fff;
}

#campaignsListPage .campaignsDatePickerContainer #campaignsDatepicker::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}

#campaignsListPage .campaignsDatePickerContainer #campaignsDatepicker::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}

#campaignsListPage .campaignsDatePickerContainer #campaignsDatepicker:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}

#campaignsListPage .campaignsDatePickerContainer #campaignsDatepicker:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}

#campaignsListPage .campaignsDatePickerContainer label {
  left: 25px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  color: #292929;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.48px;
}

/* Home: All campaigns */
.all_campaigns_wrapper {
  position: relative;
}

.all_campaigns_wrapper .loader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  min-height: 130px;
  display: none;
}

.all_campaigns_wrapper .loader svg {
  shape-rendering: auto;
  display: block;
  background: transparent;
  width: 65px;
  height: 65px;
  margin-top: 30px;
}

.all_campaigns_wrapper .loader.active {
  display: flex;
}

.all_campaigns_wrapper .empty {
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: #fffffff5;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 130px;
  display: none;
}

.all_campaigns_wrapper .empty.active {
  display: flex;
  z-index: 1;
}

.paymentHistoryPage .active {
  display: table-column;
}

#campaignsLoadMore {
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 30px;
  display: inline-block !important;
  margin-top: 25px;
  margin-bottom: 30px;
  border-radius: 3px;
  background-color: #0042FF !important;
  border: none;
  padding: 8px 15px;
  padding-right: 15px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  min-width: 130px;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  background-color: #f2f5ff !important;
  border: 1px solid #b8c6ff;
  box-shadow: unset;
  color: #244ff2;
  border-radius: 30px;
  padding: 12px 37px;
  height: unset;
}

#campaignsLoadMore:hover {
  background-color: #0042ff !important;
  color: #fff;
}

.all_campaigns .campaign {
  margin-top: 13px;
  padding: 9px;
  border: 1.08px solid #E3E3E3;
  border-radius: 5.41px;
  background-color: #FFFFFF;
  padding-right: 22px;
}

.all_campaigns .campaign .row:after {
  content: none;
}

.all_campaigns .campaign .row:nth-child(1) {
  display: flex;
  gap: 21px;
  width: 100%;
  align-items: center;
  margin: 0;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper {
  width: 190px;
  height: 100%;
  position: relative;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .shorts {
  display: none;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .shorts img {
  right: 0;
  top: 0;
  z-index: 4;
  background: #ffffffcf;
  padding: 4px;
  width: 22px;
  height: 25px;
  border-radius: 0 0 0 4px;
  position: absolute;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .shorts.show {
  display: block;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .admin_only {
  position: absolute;
  left: 5px;
  bottom: 5px;
  padding: 4px;
  background: #ffffffe0;
  border-radius: 3px;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .admin_only img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .admin_only:nth-child(2) {
  left: 35px;
  padding: 5.5px;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .admin_only:nth-child(2) img {
  height: 17px;
}

.all_campaigns .campaign .row:nth-child(1) .image_wrapper .admin_only:hover {
  background: #fff;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper {
  width: calc(100% - 206px);
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) {
  width: calc(100% - 200px);
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(1) {
  color: #676767;
  font-family: "Founders Grotesk";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 16px;
  margin: 0;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(2) {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.77px;
  line-height: 29px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 95%;
  margin: 0;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 11px;
  width: 200px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .controll {
  display: flex;
  gap: 4px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .status {
  padding: 6px 9px;
  color: #189100;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 17px;
  text-align: center;
  border: 1px solid #189100;
  border-radius: 3.24px;
  background-color: #DEFFD0;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .status.archived {
  color: #717171;
  border: 1px solid #c2c2c2;
  background-color: #f4f4f4;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .status.grey {
  color: #717171;
  border: 1px solid #c2c2c2;
  background-color: #f4f4f4;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .status.red {
  color: #a33c3c;
  border: 1px solid #a33c3c;
  background-color: #fbecec !important;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .status.finished {
  color: #a3843c;
  border: 1px solid #a3843c;
  background-color: #fbf6ec;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .edit {
  border: 1px solid #E5E5E5;
  background-color: #F6F6F6;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .edit:hover {
  background: #e9e9e9;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu {
  border: 1px solid #E5E5E5;
  background-color: #F6F6F6;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .hover-s {
  display: none;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap {
  padding: 17px 11px;
  position: absolute;
  display: none;
  top: 25px;
  right: 0;
  z-index: 5;
  background: #fff;
  border-radius: 4px;
  width: 200px;
  padding: 6px;
  box-shadow: 0px 0px 15px 0px rgba(151, 151, 151, 0.53);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(151, 151, 151, 0.53);
  -moz-box-shadow: 0px 0px 15px 0px rgba(151, 151, 151, 0.53);
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .dropdown-content {
  display: block;
  position: relative;
  opacity: 1;
  box-shadow: unset;
  width: 100%;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .dropdown-content li {
  display: flex;
  align-items: center;
  border: 1px solid #e4e4e4;
  width: 100%;
  padding: 4px 5px;
  gap: 8px;
  border-radius: 4px;
  min-height: unset;
  margin-bottom: 5px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .dropdown-content li a {
  padding: 0;
  font-weight: 500;
  font-size: 14px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .dropdown-content li a i {
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 13px;
  padding-left: 4px;
  padding-bottom: 5px !important;
  border-radius: 4px;
  margin-bottom: 2px;
  margin-right: 3px;
  padding-top: 0;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .dropdown-content li:last-child {
  margin-bottom: 0px !important;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #e4e4e4;
  width: 100%;
  padding: 5px;
  border-radius: 50px;
  gap: 8px;
  border-radius: 4px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button a {
  display: flex;
  gap: 8px;
  width: 100%;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button div {
  border-radius: 30px;
  padding: 5px;
  background: #f1f1f1;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 4px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button div img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 13px;
  height: 13px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button div .selected {
  display: none;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button p {
  font-size: 17px;
  font-weight: 500;
  font-size: 14px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button:nth-child(1) img {
  width: 17px;
  height: 17px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button:nth-child(2) img {
  width: 16px;
  height: 16px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .c_wrap .buttons .button:nth-child(3) img {
  width: 18px;
  height: 18px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu:hover {
  background: #0042FF;
  border: 1px solid #97B2FF;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu:hover .c_wrap {
  display: block;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu:hover .hover {
  display: none;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu:hover .hover-s {
  display: block;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .buttons .button:hover {
  border: 1px solid #0042FF;
  background: #f9fbff;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .buttons .button:hover div {
  background: #003ce2;
  border: 1px solid #0042FF;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .buttons .button:hover div img {
  display: none;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .menu .buttons .button:hover div .selected {
  display: block;
  opacity: 0.85;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data {
  margin-top: 23px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: scroll;
  padding-top: 9px;
  margin-top: 12px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block:nth-child(2) {
  justify-content: space-between;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .block_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item {
  width: 125px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item .item_wrapper {
  border: 1.08px solid #DDDDDD;
  border-radius: 3.24px;
  background-color: #FCFCFC;
  padding: 8px 14px;
  display: flex;
  align-items: center;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item .item_wrapper p:nth-child(1) {
  position: absolute;
  top: -50%;
  transform: translateY(50%);
  color: #6C6C6C;
  font-size: 14px;
  letter-spacing: -0.45px;
  line-height: 17px;
  font-weight: 300;
  margin: 0;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item .item_wrapper p:nth-child(1) span {
  width: 120%;
  position: absolute;
  height: 1px;
  bottom: 50%;
  background: #fff;
  top: 10px;
  left: 50%;
  z-index: -1;
  transform: translateX(-47%);
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item .item_wrapper p:nth-child(2) {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  gap: 6px;
  margin: 0;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item .item_wrapper p:nth-child(2) img {
  margin-top: 1px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item.highlight {
  min-width: 140px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item.highlight p:nth-child(1) {
  color: #4d6f3e;
  letter-spacing: -0.35px;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item.highlight .item_wrapper {
  border: 1.08px solid #2F9D00;
  background-color: #EFFFE8;
}

.all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block .item.highlight .item_wrapper p:nth-child(2) {
  color: #000000;
}

.add_new {
  border-radius: 4.33px;
  background-color: #FBFBFB;
  text-align: center;
  padding: 40px;
  margin-top: 21px;
  margin-bottom: 50px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23A2A2A2FF' stroke-width='2' stroke-dasharray='6%2c 10' stroke-dashoffset='20' stroke-linecap='square'/%3e%3c/svg%3e");
}

.add_new a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.add_new a div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
}

.add_new p {
  color: #000000;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.61px;
  line-height: 23px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3px;
}

.add_new:hover {
  background-color: #ffffff;
}

.preview_wrap.active {
  top: 0;
}

.preview {
  background: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  width: 100%;
  padding-top: 0;
}

.preview p {
  margin: 0;
}

.preview .preview_back {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translateX(-50px);
  background: #fff;
  z-index: 0;
  border-left: 1px solid #DFDFDF;
}

.preview .switch_wrap.global {
  cursor: pointer;
  position: relative;
}

.preview .switch_wrap.global .switch {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
}

.preview .switch_wrap.global .switch .option {
  color: #4B4B4B;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
  text-align: right;
  padding: 7px 15px;
  padding-bottom: 8px;
  z-index: 9;
}

.preview .switch_wrap.global .switch .option_selected {
  color: #fff;
}

.preview .switch_wrap.global .switch .selection {
  position: absolute;
  border-radius: 30px;
  height: 85%;
  width: 45%;
  left: 3px;
  background: #0042FF;
  transition: left 0.3s ease, width 0.3s ease;
}

.preview .wrapper {
  position: relative;
  z-index: 9;
}

.preview .wrapper .preview_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.preview .wrapper .preview_header p {
  color: #000000;
  font-size: 16.8px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
}

.preview .wrapper .switch_wrap.global .switch .selection, .preview .wrapper .switch .selection {
  left: 3px;
  width: 51%;
}

.preview .wrapper .switch_wrap.global .switch .option, .preview .wrapper .switch .option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  padding-bottom: 5px;
}

.preview .wrapper .switch_wrap.global .switch .option img, .preview .wrapper .switch .option img {
  margin-top: 1px;
}

.preview .wrapper .switch_wrap.global .switch .option img, .preview .wrapper .switch .option img {
  display: none;
}

.preview .wrapper .switch_wrap.global .switch .option .inactive, .preview .wrapper .switch .option .inactive {
  display: block;
}

.preview .wrapper .switch_wrap.global .switch .option.mobile.option_selected .inactive, .preview .wrapper .switch .option.mobile.option_selected .inactive {
  display: none;
}

.preview .wrapper .switch_wrap.global .switch .option.mobile.option_selected .active, .preview .wrapper .switch .option.mobile.option_selected .active {
  display: block;
}

.preview .wrapper .switch_wrap.global .switch .option.desktop.option_selected .inactive, .preview .wrapper .switch .option.desktop.option_selected .inactive {
  display: none;
}

.preview .wrapper .switch_wrap.global .switch .option.desktop.option_selected .active, .preview .wrapper .switch .option.desktop.option_selected .active {
  display: block;
}

.preview .wrapper .preview_1 {
  border: 0.93px solid #D0D0D0;
  border-radius: 5.6px;
  background-color: #FFFFFF;
  padding: 10px 10px 11px;
  padding-bottom: 11px;
  display: none;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_head .column:nth-child(1) {
  display: flex;
  gap: 5px;
  margin-bottom: 3px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_head .column:nth-child(2) {
  width: 52%;
  height: 11px;
  margin-bottom: 3px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_head .column:nth-child(2) .search_bar {
  border-radius: 2px;
  background: #E9E9E9;
  width: 100%;
  height: 100%;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body {
  display: flex;
  gap: 8px;
  align-items: start;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .img_wrapper {
  width: 70%;
  position: relative;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .img_wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 4px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .img_wrapper .progress {
  margin: 0;
  position: absolute;
  bottom: 0;
  height: 6px;
  width: 45%;
  left: 0;
  background-color: #FFD600;
  z-index: 3;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .img_wrapper .total_time {
  bottom: 0;
  position: absolute;
  height: 6px;
  width: 100%;
  border-radius: 0 0 3px 3px;
  background-color: #BEBCBC;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .img_wrapper .ad_icon {
  position: absolute;
  bottom: 13px;
  left: 9px;
  color: #292929;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02px;
  line-height: 14.68px;
  text-align: center;
  border-radius: 1.33px;
  background-color: #FFD600;
  padding: 1px 5px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar {
  width: 30%;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin: 0;
  margin-top: 7px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info_wrap {
  display: flex;
  align-items: center;
  gap: 3px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info .ad_title {
  color: #1e1e1e;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 12px;
  margin-bottom: -1px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info .ad_icon_wrap {
  display: flex;
  align-items: center;
  gap: 2px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info .ad_icon_wrap .ad_icon {
  color: #212121;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: -0.14px;
  line-height: 5.23px;
  border-radius: 0.75px;
  background-color: #FFD600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.3px 2px;
  margin-top: 1px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info .ad_icon_wrap p {
  color: #676767;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: -0.21px;
  line-height: 6.53px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .subs {
  color: #FFFFFF;
  padding: 4px 6px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: -0.19px;
  line-height: 7.47px;
  text-align: right;
  border-radius: 1.07px;
  background-color: #EF0303;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) {
  margin: 0;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) .column:first-child {
  width: 40%;
  background-color: #D8D8D8;
  padding-bottom: 25%;
  width: 40% !important;
  border-radius: 2px;
  overflow: hidden;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) .column:nth-child(2) {
  width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) .column:nth-child(2) #pf_channel_name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) .column:nth-child(2) #pf_video_title {
  font-weight: 500;
  margin-bottom: 0 !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) .column:nth-child(2) div {
  border-radius: 0.93px;
  background-color: #D8D8D8;
  width: 90%;
  padding-bottom: 14%;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) .column:nth-child(2) div:first-child {
  margin-bottom: 3px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:not(:first-child) .column:nth-child(2) div:nth-child(2) {
  width: 80%;
  padding-bottom: 19%;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  gap: 15px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_info .title {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.65px;
  line-height: 25px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_info .stats {
  display: none;
  align-items: center;
  gap: 6px;
  position: relative;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_info .stats p {
  opacity: 0.8;
  color: #1E1E1E;
  font-size: 15.98px;
  letter-spacing: -0.51px;
  line-height: 19px;
  position: relative;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_info .stats p span {
  font-weight: 500;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_info .stats p:first-child {
  margin-right: 17px;
}

.preview .wrapper .preview_1 .yt_wrapper .yt_info .stats p:first-child:after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  height: 4px;
  width: 4px;
  border-radius: 10px;
  background-color: #A7A7A7;
}

.preview .wrapper .preview_in_feed .yt_body .img_wrapper {
  position: relative;
}

.preview .wrapper .preview_in_feed .yt_body .img_wrapper .video_back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #d4d4d4;
}

.preview .wrapper .preview_in_feed .yt_body .img_wrapper .progress {
  background-color: #EF0303 !important;
}

.preview .wrapper .preview_in_feed .yt_body .img_wrapper .total_time {
  background-color: #b6b6b6 !important;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(1) {
  display: none !important;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) {
  margin-top: 0 !important;
  position: relative;
  align-items: start;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column {
  position: relative;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column:nth-child(2) .video_name {
  line-height: 9px;
  font-size: 10px;
  background-color: unset !important;
  margin: 0;
  padding: 0 !important;
  margin-bottom: 2px !important;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column:nth-child(2) .video_info {
  background: unset !important;
  font-size: 10px;
  display: flex;
  padding-bottom: 0 !important;
  width: 100% !important;
  align-items: center;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column:nth-child(2) .video_info div:nth-child(1) {
  margin: 0;
  margin-right: 4px;
  background: #000;
  color: #212121;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: -0.14px;
  line-height: 5.23px;
  border-radius: 0.75px;
  background-color: #FFD600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.3px 2px;
  margin-top: 1px;
}

.preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column:nth-child(2) .video_info div:nth-child(2) {
  background: unset;
  padding-bottom: unset;
  width: 100%;
  line-height: 13px;
  font-size: 9px;
}

.preview .wrapper .preview_in_feed .yt_info .title {
  width: 50%;
  padding-bottom: 4%;
  border-radius: 0.93px;
  background-color: #D8D8D8;
}

.preview .wrapper .preview_in_feed .yt_info .stats {
  width: 30%;
  gap: 5px;
}

.preview .wrapper .preview_in_feed .yt_info .stats p:nth-child(1) {
  width: 70%;
  padding-bottom: 12%;
  border-radius: 0.93px;
  background-color: #D8D8D8;
}

.preview .wrapper .preview_in_feed .yt_info .stats p:nth-child(2) {
  width: 70%;
  padding-bottom: 12%;
  border-radius: 0.93px;
  background-color: #D8D8D8;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body {
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 10px;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row {
  width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: start;
  gap: 12px;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .img_wrapper {
  width: 35%;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .img_wrapper img {
  display: block;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .img_wrapper .video_lenght {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 11px;
  background: #4141419e;
  padding: 1px 6px;
  font-weight: 400;
  border-radius: 1px;
  color: #d2d2d2;
  font-size: 8px;
  padding: 0px 3px;
  background: #0000009e;
  left: 2px;
  bottom: 2px;
  font-weight: 500;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .row_data {
  width: 65%;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .row_data .video_title {
  font-weight: 500;
  font-size: 13px;
  line-height: 12px;
  margin-bottom: 3px;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .row_data .inline {
  display: flex;
  gap: 4px;
  line-height: 15px;
  font-size: 12px;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .row_data .inline .ad_icon {
  margin: 0;
  margin-right: 4px;
  background: #000;
  color: #212121;
  font-size: 10px;
  font-weight: 600;
  line-height: 9px;
  letter-spacing: -0.14px;
  border-radius: 0.75px;
  background-color: #FFD600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 3px;
  margin-top: 1px;
  margin-right: 0;
  font-size: 8px;
  padding: 1px 3px;
  padding-bottom: 0px;
  line-height: 9px;
  height: 12px;
  margin-top: 2px;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .row_data .inline .channel_name {
  color: #6e6e6e;
  font-size: 10px;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row .row_data .video_views {
  font-size: 12px;
  color: #484848;
  margin-top: 2px;
  font-size: 9px;
  position: relative;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row:not(:first-child) .img_wrapper .back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #efefef;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row:not(:first-child) .row_data {
  width: 65%;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row:not(:first-child) .row_data .video_title {
  width: 85%;
  background: #efefef;
  height: 15px;
  margin-top: 6px;
}

.preview .wrapper .preview_search .yt_wrapper .yt_body .row:not(:first-child) .row_data .inline {
  height: 20px;
  width: 70%;
  background: #f7f7f7;
  margin-top: 5px;
}

.preview .wrapper .preview_mobile {
  height: 490px;
  border-radius: 25px 25px 0 0;
  padding: 14px;
  padding-bottom: 0;
  background: #f7f7f7;
  overflow: hidden;
}

.preview .wrapper .preview_mobile .yt_wrapper {
  height: 100%;
  border: 0.93px solid #d1d1d1;
  border-radius: 13px 13px 0 0;
  border-bottom: 0;
  padding-bottom: 0;
  background: #fff;
}

.preview .wrapper .preview_mobile .yt_wrapper .yt_head {
  padding: 15px;
  padding-bottom: 10px;
  border-bottom: 0.93px solid #d1d1d1;
}

.preview .wrapper .preview_mobile .yt_wrapper .yt_head .column:nth-child(2) {
  height: 25px;
}

.preview .wrapper .preview_mobile .yt_wrapper .yt_body {
  padding: 14px;
  padding-top: 0;
  padding-bottom: 0;
  gap: 21px;
}

.preview .wrapper .preview_search_mobile {
  height: 490px;
  border-radius: 25px 25px 0 0;
  padding: 14px;
  padding-bottom: 0;
  background: #f7f7f7;
  overflow: hidden;
}

.preview .wrapper .preview_search_mobile .yt_wrapper {
  height: 100%;
  border: 0.93px solid #d1d1d1;
  border-radius: 13px 13px 0 0;
  border-bottom: 0;
  padding-bottom: 0;
  background: #fff;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_head {
  padding: 15px;
  padding-bottom: 10px;
  border-bottom: 0.93px solid #d1d1d1;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_head .column:nth-child(2) {
  height: 25px;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body {
  padding: 14px;
  padding-top: 0;
  padding-bottom: 0;
  gap: 21px;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row {
  width: 100%;
  flex-wrap: wrap;
  gap: 11px;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .img_wrapper {
  width: 100%;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .img_wrapper .video_lenght {
  font-size: 13px;
  right: 6px;
  left: unset;
  bottom: 5px;
  background: #161616;
  color: #ececec;
  border-radius: 4px;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .row_data {
  display: flex;
  align-items: center;
  gap: 7px;
  align-items: start;
  width: 95%;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .row_data .channel_icon {
  margin-bottom: -2px;
  background: #f2f2f2;
  border-radius: 10px;
  border: 1px solid #ededed;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .row_data .video_title {
  margin-bottom: -7px;
  font-size: 20px;
  line-height: 20px;
  margin-right: 5px;
  margin-bottom: 0px;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .row_data .inline {
  display: inline-block;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .row_data .inline .ad_icon {
  display: inline-block;
  font-size: 9px;
  vertical-align: text-top;
  margin-right: 3px;
  border-radius: 2px;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .row_data .inline .channel_name {
  display: inline-block;
  margin-right: 2px;
  color: #5c5c5c;
  font-size: 13px;
  letter-spacing: -0.2px;
  margin-right: 6px;
}

.preview .wrapper .preview_search_mobile .yt_wrapper .yt_body .row .row_data .video_views {
  display: inline-block;
  margin-top: 0;
  font-size: 13px;
  color: #5c5c5c;
}

.preview .wrapper .preview_shorts {
  position: relative;
  min-height: 500px;
  background: #e8e8e8;
  overflow: hidden;
  border-radius: 0;
  padding: 14px;
  padding-top: 0;
  padding-bottom: 0;
}

.preview .wrapper .preview_shorts .shadow {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #00000012;
  box-shadow: unset !important;
  border-radius: unset !important;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
  background-image: url(https://i.ytimg.com/vi/pSPCTOlNvOQ/mqdefault.jpg);
  z-index: 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  background: #1d1d1d;
  filter: unset;
}

.preview .wrapper .preview_shorts #pss_channel_icon {
  width: 30px !important;
  border-radius: 50px;
}

.preview .wrapper .preview_shorts .yt_wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.preview .wrapper .preview_shorts .yt_wrapper .img_wrapper {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  z-index: 1;
  top: 35%;
}

.preview .wrapper .preview_shorts .yt_wrapper .image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.preview .wrapper .preview_shorts .yt_wrapper img {
  width: 100%;
}

.preview .wrapper .preview_shorts .yt_info {
  z-index: 2;
  position: relative;
  width: calc(100% - 90px);
}

.preview .wrapper .preview_shorts .yt_info .channel_info_wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 5px;
}

.preview .wrapper .preview_shorts .yt_info .channel_info_wrap .channel_info {
  margin-top: -3px;
}

.preview .wrapper .preview_shorts .yt_info .channel_info_wrap .sponsored {
  margin-top: -5px;
  font-weight: 600;
  margin-bottom: 5px;
}

.preview .wrapper .preview_shorts .yt_info .pss_channel_name {
  font-weight: 600;
  letter-spacing: -0.2px;
}

.preview .wrapper .preview_shorts .yt_info .row {
  width: 100%;
}

.preview .wrapper .preview_shorts .yt_info .title {
  margin-bottom: 20px;
  color: #fff !important;
}

.preview .wrapper .preview_shorts .yt_info .cta {
  background: #244FF2;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  font-weight: 500;
}

.preview .wrapper .preview_shorts .short_info_wrapper {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  align-items: end;
  color: #fff;
  gap: 30px;
  margin: 0 15px;
}

.preview .wrapper .preview_shorts .short_info_wrapper .row {
  margin: 0;
}

.preview .wrapper .preview_shorts .short_actions {
  z-index: 2;
  position: relative;
  display: block;
  align-items: center;
}

.preview .wrapper .preview_shorts .short_actions img {
  width: 26px;
  display: block;
  margin-bottom: 20px;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper {
  overflow: hidden;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_head {
  margin-bottom: 0;
  padding: 8px 15px;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_head .column {
  margin: 0;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_head .column:nth-child(1) img {
  margin-top: 4px;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_head .column:nth-child(2) {
  display: none;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body {
  padding: 0px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row {
  width: 100%;
  flex-wrap: wrap;
  gap: 0;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .img_wrapper {
  width: 100%;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .img_wrapper .skip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(65, 65, 65, 0.619608);
  padding: 2px 8px;
  padding-bottom: 3px;
  font-weight: 400;
  border-radius: 1px;
  color: #e8e8e8;
  border: 1px solid #a1a1a1;
  border-radius: 2px;
  font-size: 15px;
  bottom: 13px;
  border: unset;
  font-weight: 450;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.52);
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .img_wrapper .video_lenght {
  left: 9px;
  bottom: 13px;
  font-size: 13px;
  font-weight: 500;
  background: #0000009e;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .sponsor {
  position: absolute;
  border: 0;
  position: relative;
  width: 100%;
  padding: 0 15px;
  padding-bottom: 8px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #eaeaea;
  background: #fdfdfd;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .sponsor .split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .sponsor .split .name div:nth-child(1) {
  font-size: 15px;
  margin-bottom: -7px;
  font-weight: 500;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .sponsor .split .name div:nth-child(2) {
  font-size: 14px;
  color: #505050;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .sponsor .split .button {
  padding: 4px 13px;
  border: 1px solid #f00;
  background: #dc0000;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .row_data {
  width: 100%;
  padding: 14px;
  padding-top: 0;
  padding-top: 17px;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .row_data .video_title {
  width: 65%;
  height: 26px;
  background: #e4e4e4;
}

.preview .wrapper .preview_in_stream_mobile .yt_wrapper .yt_body .row .row_data .video_views {
  width: 86%;
  height: 50px;
  margin-top: 10px;
  background: #e4e4e4;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .img_wrapper {
  height: 130px;
  width: 100%;
  position: relative;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .img_wrapper .progress {
  background-color: #b2b2b2;
  width: 75%;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .img_wrapper_dummy {
  height: 40px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .img_wrapper:after {
  background: #c7c7c7;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .row_data .row_data_about .video_views {
  height: 18px;
  margin-top: 6px;
  width: 95%;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .fake_channel {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  width: 100%;
  padding-bottom: 0;
  gap: 10px;
  padding-top: 2px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .fake_channel .inner_split {
  display: flex;
  width: 50%;
  align-items: center;
  gap: 10px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .fake_channel .icon {
  height: 30px;
  width: 30px;
  background: #c5c5c5;
  border-radius: 100%;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .fake_channel .name {
  width: 35%;
  height: 20px;
  background: #e4e4e4;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .fake_channel .button {
  width: 20%;
  height: 25px;
  background: #c5c5c5;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .actions {
  width: 100%;
  padding: 14px;
  padding-top: 11px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation {
  padding: 14px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap {
  display: flex;
  align-items: start;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .img_wrapper {
  height: unset;
  width: 40%;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .img_wrapper .video_lenght {
  left: 6px;
  bottom: 7px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .img_wrapper:after {
  display: none;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .row_data {
  width: 60%;
  padding: 0;
  padding-left: 12px;
  padding-top: 5px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .row_data .row_data_about .video_title {
  background: unset;
  width: 100%;
  line-height: 15px;
  height: unset;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .row_data .row_data_about .inline .ad_icon {
  font-size: 12px;
  padding: 3px;
  height: 16px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .row_data .row_data_about .inline .channel_name {
  font-size: 13px;
  line-height: 17px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .recommendation .recommendation_wrap .row_data .row_data_about .video_views {
  background: unset;
  margin-top: 2px;
  font-size: 13px;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row :nth-child(6) {
  padding-top: 0;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row :nth-child(6) .recommendation_wrap .img_wrapper {
  position: relative;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row :nth-child(6) .recommendation_wrap .back {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #e4e4e4;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row :nth-child(6) .recommendation_wrap .row_data .row_data_about .video_title {
  height: 20px;
  background: #efefef;
  width: 80%;
}

.preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row :nth-child(6) .recommendation_wrap .row_data .row_data_about .inline {
  height: 20px;
  background: #efefef;
  width: 60%;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper #psd_channel_icon {
  width: 30px !important;
  border-radius: 50px;
  width: 16px !important;
  margin-top: 3px;
  margin-right: 6px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body {
  display: flex;
  flex-wrap: nowrap;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .side_wrapper {
  width: 20%;
  display: block;
  height: 250px;
  position: relative;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .side_wrapper .row.left {
  margin-left: 0;
  display: block;
  width: 90%;
  position: relative;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .side_wrapper .row.left .column {
  border-radius: 1px;
  background-color: #ececec;
  height: 8px;
  width: 100%;
  margin-bottom: 14px;
  margin-left: 19px;
  position: relative;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .side_wrapper .row.left .column::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #ececec;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .side_wrapper .row.left .split {
  border-radius: 1px;
  background-color: #f4f4f4;
  height: 1px;
  width: 120%;
  margin-bottom: 14px;
  margin-top: 14px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .side_wrapper .short_actions {
  z-index: 2;
  position: relative;
  display: block;
  align-items: center;
  filter: invert(0.2);
  position: absolute;
  right: 10px;
  bottom: 15px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .side_wrapper .short_actions img {
  width: 13px;
  display: block;
  margin-bottom: 13px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper {
  width: 60%;
  position: relative;
  height: 100%;
  min-height: 200px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .short {
  width: 125px;
  position: relative;
  height: 230px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 13px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .switches {
  position: absolute;
  right: calc(50% - 85px);
  top: 50%;
  transform: translate(50%, -50%);
  opacity: 0.4;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .switches .up {
  width: 24px;
  display: block;
  margin-bottom: 4px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .switches .down {
  display: block;
  width: 24px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .img_wrapper {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  z-index: 1;
  top: 35%;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper img {
  width: 100%;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .short_img_wrapper {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  z-index: 1;
  top: 45%;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .yts_wrapper .shadow {
  position: absolute;
  height: 100%;
  width: 100%;
  box-shadow: unset !important;
  border-radius: unset !important;
  left: 0;
  top: 0;
  z-index: 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background: #000;
  filter: unset;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  align-items: end;
  color: #fff;
  gap: 30px;
  margin: 0 15px;
  bottom: 0;
  margin: 0;
  width: 100%;
  gap: 0;
  display: block;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info {
  width: 100%;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 5px;
  margin-bottom: 0;
  gap: 7px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row .channel_info_wrap {
  font-size: 10px;
  width: 100%;
  margin-bottom: 6px;
  display: flex;
  align-items: start;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row .channel_info_wrap .channel_info {
  font-size: 8px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row .channel_info_wrap .channel_info .ad_title {
  font-size: 12px;
  margin-bottom: -3px;
  letter-spacing: -0.3px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row .channel_info_wrap .channel_info .sponsored {
  font-weight: 500;
  font-size: 10px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row #pss_video_title {
  display: none;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row .cta {
  font-size: 9px;
  background: #0042ff;
  width: 100%;
  border-radius: 15px;
  text-align: center;
  padding: 2px;
  font-weight: 500;
  padding-bottom: 3px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .row {
  margin: 0;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_actions {
  z-index: 2;
  position: relative;
  display: none;
  align-items: center;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_actions img {
  width: 26px;
  display: block;
  margin-bottom: 20px;
}

.preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_actions .like {
  transform: rotate(180deg);
}

.preview .wrapper .preview_1.active {
  display: block;
}

.preview .wrapper .switch_buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  grid-template-areas: ". ." ". .";
}

.preview .wrapper .switch_buttons .switch_feed {
  width: 100%;
  display: block;
  border: 0.95px solid #D5D5D5;
  border-radius: 2.8px;
  background-color: #FBFAFA;
  width: 100%;
  text-align: center;
  padding: 9px 10px;
  padding-bottom: 10px;
  color: #3C3C3C;
  font-size: 15.22px;
  font-weight: 500;
  letter-spacing: -0.49px;
  line-height: 19px;
  position: relative;
  opacity: 0.8;
  cursor: pointer;
}

.preview .wrapper .switch_buttons .switch_feed div {
  display: none;
}

.preview .wrapper .switch_buttons .switch_feed:nth-child(3) {
  width: 100%;
}

.preview .wrapper .switch_buttons .switch_feed.active {
  background: #0042FF;
  color: #fff;
  opacity: 1;
}

.preview .wrapper .switch_buttons .switch_feed.active div {
  display: block;
  height: 3px;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #A4BCFF;
  transition: width 5s linear 0s;
}

.preview_wrap {
  z-index: 9999;
  padding: 0 !important;
  background: #00000030;
  display: block !important;
  position: fixed;
  width: 100% !important;
  height: 100%;
  left: 0 !important;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  top: 100%;
}

.preview_wrap .close_mobile {
  width: 29px;
  position: absolute;
  right: 15px;
  top: 7px;
  padding: 5px;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  border-radius: 3px;
}

.preview_wrap .sticky, .preview_wrap #stick {
  position: unset !important;
  width: 100% !important;
  height: calc(100% - 45px);
  padding: 0;
  margin-top: 45px;
  padding-top: 15px;
  border-radius: 10px 10px 0 0;
}

.preview_wrap .preview_back {
  display: none;
}

.preview_wrap.active {
  top: 0;
}

.mobile_preview_btn {
  position: fixed;
  right: -26px;
  top: 25%;
  background: #4c5782;
  padding: 3px 10px;
  color: #fff;
  transform: rotate(270deg);
  border-radius: 3px 3px 0 0;
  font-weight: 460;
}

/* Campaign Builder Error */
#other_language_warning {
  color: #f44336;
  padding: 9px 12px !important;
  background: #fff2f1;
  border: 1px solid #f44336;
  border-radius: 3px;
  line-height: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* New Campaign Code */
#locations_in_bulk_search {
  line-height: 34px;
  margin-top: 10px;
}

#suggest_keywords_container {
  display: none;
  margin: 16px;
}

#suggest_keywords_container #suggested_keywords_list {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.new-campaign-page {
  height: -moz-fit-content !important;
  height: fit-content !important;
  height: 100% !important;
}

.new-campaign-page #place_search_btn {
  top: 18px !important;
  right: 5px !important;
}

.new-campaign-page .modal .row .collapsible ._collection {
  margin: 0 !important;
  margin-top: 20px !important;
}

.new-campaign-page #scheduleDatepickerContainer {
  gap: 10px;
  display: flex;
}

.new-campaign-page #scheduleDatepickerContainer .col.s12.m6 input {
  padding-left: 15px;
  font-size: 17px;
}

.new-campaign-page .estimateViewsAndSubscribersContainer label:nth-child(1),
.new-campaign-page .increase_ytBudgetCounter label:nth-child(1) {
  color: #fff;
}

.new-campaign-page .estimateViewsAndSubscribersContainer label:nth-child(1) b,
.new-campaign-page .increase_ytBudgetCounter label:nth-child(1) b {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.new-campaign-page .estimateViewsAndSubscribersContainer label:nth-child(2),
.new-campaign-page .increase_ytBudgetCounter label:nth-child(2) {
  color: #000;
}

.new-campaign-page .estimateViewsAndSubscribersContainer label:nth-child(2) b,
.new-campaign-page .increase_ytBudgetCounter label:nth-child(2) b {
  color: #000;
  font-weight: 500;
  font-size: 12px;
}

.new-campaign-page .estimateViewsAndSubscribersContainer label:nth-child(3) b,
.new-campaign-page .increase_ytBudgetCounter label:nth-child(3) b {
  color: #000;
  font-weight: 500;
  font-size: 12px;
}

.new-campaign-page .card-body #placement_btn_container {
  margin-top: 10px;
}

.new-campaign-page #configurate .card-style .card-body .increase_ytBudgetCounter {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #E3E3E3 !important;
  border-radius: 3px !important;
  background-color: #fafafa !important;
  height: 100% !important;
  margin-left: 15px !important;
  padding-top: 10px !important;
  padding-bottom: 15px !important;
  margin: 0 !important;
  padding: 10px !important;
  padding-bottom: 13px !important;
  text-align: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 10px !important;
  padding-bottom: 13px !important;
  text-align: center !important;
  display: block !important;
  width: 40% !important;
  float: right !important;
  margin-top: 12px !important;
  color: #525252 !important;
}

.new-campaign-page .steps--short {
  display: none;
}

.new-campaign-page main, .new-campaign-page #page-container {
  margin-top: 30px;
  width: 90%;
  max-width: 1400px;
  margin: 30px auto;
}

.new-campaign-page #page-container {
  min-height: 100%;
}

.new-campaign-page header {
  border-bottom: 1.13px solid #E2E2E2;
  z-index: 3;
  position: relative;
}

.new-campaign-page header .wrapper {
  width: 90%;
  z-index: 9;
  position: relative;
}

.new-campaign-page .disclaimer {
  display: none;
}

.new-campaign-page .new-campaign {
  padding: 0;
}

.new-campaign-page .new-campaign .step {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper {
  display: flex;
  gap: 45px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form {
  width: 54%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .step-2-x {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .step-2-x.active {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header h1 {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.12px;
  line-height: 42px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages {
  display: flex;
  gap: 0;
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .stage_single {
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .stage_single svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .stage_single p {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  text-align: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .stage_single.active p {
  color: #FFFFFF;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .stage_single.active svg g {
  fill: #244FF2;
  stroke: #244FF2;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .stage_single.inactive {
  color: #737373;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .stage_single.inactive svg g {
  stroke: #E3E3E3;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .step-2-1-nav {
  height: 42px;
  width: 101px;
  margin-right: -6px;
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .step-2-2-nav {
  height: 42px;
  width: 114px;
  margin-right: -7px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .step-2-2-nav p {
  left: 49%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .step-2-3-nav {
  height: 42px;
  width: 101px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .form_header .stages .step-2-3-nav p {
  left: 51%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block {
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 14px 18px;
  padding-bottom: 18px;
  margin-bottom: 13px;
  border: 1px solid #eaeaea;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 12px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .top h2 {
  color: #494949;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 22px;
  margin: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .top .switch_wrap {
  cursor: pointer;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .top .switch_wrap .switch {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .top .switch_wrap .switch .option {
  color: #4B4B4B;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
  text-align: right;
  padding: 7px 15px;
  padding-bottom: 8px;
  z-index: 9;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .top .switch_wrap .switch .option_selected {
  color: #fff;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .top .switch_wrap .switch .selection {
  position: absolute;
  border-radius: 30px;
  height: 85%;
  width: 45%;
  left: 3px;
  background: #0042FF;
  transition: left 0.3s ease, width 0.3s ease;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result {
  position: relative;
  display: flex;
  align-items: start;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fdfdfd;
  gap: 12px;
  cursor: pointer;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .add_to_list {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px;
  background-color: #e00010;
  border-radius: 0 3px 0 7px;
  cursor: pointer;
  z-index: 3;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .add_to_list img {
  width: 10px;
  opacity: 0.8;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .add_to_list .add_icon {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .add_to_list .selected_icon {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .video_type {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 14px;
  padding: 2.6px 12px;
  border: 1px solid #e1e1e1;
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 6px;
  padding-right: 16px;
  z-index: 0;
  background: #f9f9f9;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .video_type span {
  font-weight: 500;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .icon {
  width: 90px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .core .name {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .core .name a:hover {
  text-decoration: underline;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .core .desc {
  font-size: 14px;
  letter-spacing: 0.1px;
  line-height: 19px;
  margin-top: 2px;
  color: #3c3c3c;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .channel_name {
  font-size: 15px;
  margin-top: -3px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .stats {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .stats .subs {
  display: block;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #dadada;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .stats .subs p:nth-child(1) {
  font-size: 14px;
  margin-bottom: -4px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .stats .subs p:nth-child(2) {
  font-weight: 500;
  color: #282828;
  font-size: 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result:hover .add_to_list {
  background-color: #c9000e;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result:hover .add_to_list img {
  opacity: 1;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .switch_buttons {
  gap: 17px;
  display: flex;
  align-items: start;
  margin-top: 12px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .switch_buttons button {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FDFDFD;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
  color: #070707;
  padding: 10px;
  padding-bottom: 11px;
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .switch_buttons button.active {
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  background-color: #F4F9FF;
  width: 100%;
  color: #2979E6;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_groups {
  display: flex;
  gap: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group {
  border: 0.5px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FDFDFD;
  padding: 8px 14px;
  padding-bottom: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group h3 {
  color: #3C3C3C;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.48px;
  line-height: 18px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options {
  display: flex;
  gap: 18px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option {
  display: flex;
  align-items: center;
  gap: 5px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label {
  color: #454545;
  font-size: 14px;
  letter-spacing: -0.45px;
  line-height: 17px;
  display: flex;
  gap: 5px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-around;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div img {
  width: 10px;
  position: absolute;
  z-index: 4;
  display: -webkit-inline-box;
  margin-bottom: 2px;
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div input:checked ~ img {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div input {
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  background-color: #F7F7F7;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  width: 1.15em;
  height: 1.15em;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  border: unset;
  display: grid;
  place-content: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div input[type="checkbox"]::before {
  content: "";
  width: 100%;
  height: 100%;
  transform-origin: bottom left;
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  background-color: #F7F7F7;
  position: absolute;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div input[type="checkbox"]:checked::before {
  background-color: #244FF2;
  border: 1px solid #244FF2;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .checkbox_wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  margin-top: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .checkbox_wrapper label {
  color: #3C3C3C;
  font-size: 15px;
  letter-spacing: -0.45px;
  line-height: 17px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper {
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list {
  width: 34%;
  padding: 0;
  border-radius: 3px;
  height: 100%;
  pointer-events: all;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper {
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper input {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  border: 1px solid #d9d9d9;
  padding: 7px 14px;
  border-radius: 2px;
  background: #fdfdfd;
  color: #3A3A3A;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.25px;
  line-height: 18px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper .select2-container {
  width: 100% !important;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper .select2-container .select2-selection--single {
  font-size: 14px;
  padding: 5px;
  height: 34px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 22px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper #targeting_location_location_search_wrapper.hidden,
.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper #targeting_location_place_search_wrapper.hidden {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper {
  margin-top: 4px;
  overflow: scroll;
  background: rgba(255, 255, 255, 0.65);
  height: calc(100% - 37px);
  border-radius: 3px;
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item {
  padding: 6px 0;
  padding-top: 8px;
  padding-left: 13px;
  color: #1F1F1F;
  font-size: 13px;
  letter-spacing: -0.26px;
  line-height: 16px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item span:nth-child(2) {
  border: unset;
  background: unset;
  font-weight: 300;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item img {
  cursor: pointer;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item .info {
  width: calc(100% - 34px);
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item .actions {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 34px;
  justify-content: end;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item:nth-child(odd) {
  border: 1px solid #EEEEEE;
  border-radius: 2px 2px 0 0;
  background-color: #FCFCFC;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item:nth-child(even) {
  background: #fff;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper.empty:after {
  content: "Please enter a location above";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #383838;
  letter-spacing: 0.1px;
  width: 90%;
  text-align: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch .switch {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  pointer-events: all;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch .switch .option {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 14px;
  text-align: right;
  padding: 5px 13px;
  padding-bottom: 8px;
  z-index: 9;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch .switch .option_selected {
  color: #fff;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch .switch .selection {
  position: absolute;
  border-radius: 30px;
  height: 85%;
  width: 52%;
  left: 3px;
  background: #0042FF;
  transition: left 0.3s ease 0s, width 0.3s ease 0s;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .radius {
  display: none;
  align-items: start;
  margin-top: 2px;
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .radius input {
  width: 80px;
  border-radius: 4px;
  padding: 6px;
  padding-left: 9px;
  font-size: 13px;
  padding-bottom: 6px;
  pointer-events: all;
  border: 1px solid #DDDDDD;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .radius select {
  padding: 4px;
  padding-left: 9px;
  padding-right: 10px;
  position: absolute;
  font-size: 12px;
  right: 2.5px;
  z-index: 3;
  top: 2.5px;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: all;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .radius.show {
  display: flex;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .input_wrap {
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .input_wrap form {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .input_wrap input {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  width: 100%;
  padding: 14px 20px;
  background-color: #FCFCFC;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .input_wrap button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  text-align: center;
  top: 50%;
  right: 6px;
  position: absolute;
  padding: 9px 15px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .input_wrap .copy {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.44px;
  line-height: 19px;
  text-align: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .bottom .explainer {
  color: #5C5B5B;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 19px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .bottom .select_wrap_c h4 {
  color: #494949;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.18px;
  line-height: 19px;
  margin-bottom: 7px;
  margin-top: 13px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .bottom .select_wrap_c .display_content {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #F9F9F9;
  padding-right: 19px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .bottom .select_wrap_c .display_content .channel_data {
  display: flex;
  gap: 6px;
  align-items: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .bottom .select_wrap_c .display_content .logo {
  height: 28px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .bottom .select_wrap_c .display_content p {
  color: #424242;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .bottom .select_wrap_c .display_content .icon {
  width: 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_wrap {
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select_wrap img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .selection_box {
  margin-top: 9px;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .selection_box div {
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  background-color: #FFFFFF;
  color: #505050;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.22px;
  line-height: 16px;
  padding: 6px 12px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .selection_box div img, .new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .selection_box div i {
  margin-left: 8px;
  height: 14px;
  width: 14px;
  margin-right: -3px;
  margin-top: -1px;
  font-size: 17px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_title {
  color: #828282;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.22px;
  line-height: 16px;
  margin-top: 12px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .no_keywords {
  color: #151515;
  font-size: 17px;
  letter-spacing: -0.28px;
  line-height: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .no_keywords.added {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai {
  border: 0.5px solid #6395D8;
  border-radius: 3px;
  background-color: #F4F9FF;
  margin-top: 18px;
  padding: 10px 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keywords_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keywords_top .title_wrap {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.68px;
  gap: 2px;
  line-height: 19px;
  display: flex;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keywords_top .title_wrap img {
  transform: translate(-1px, -3px);
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keywords_top .loading {
  top: 17%;
  position: absolute;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 60%;
  text-align: center;
  right: -25px;
  left: unset;
  width: -moz-fit-content;
  width: fit-content;
  background: unset !important;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keywords_top .loading .spinner {
  border: 2.2px solid #244ff2;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keywords_top button {
  border-radius: 3.15px;
  background-color: #0042ff;
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.22px;
  line-height: 16px;
  padding: 5px 11px;
  padding-top: 4px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
  margin-top: 8px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key {
  display: flex;
  align-items: center;
  gap: 14px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0.53px solid #73A0DC;
  border-radius: 2px;
  background-color: #DDECFF;
  padding: 4px 9px;
  padding-right: 7px;
  padding-bottom: 6px;
  color: #08397A;
  font-family: "Founders Grotesk";
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.23px;
  line-height: 17px;
  cursor: pointer;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key img {
  margin-top: 2px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key .confirm {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key .hover {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key:hover {
  background-color: #004FBA;
  color: #FFFFFF;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key:hover .hover {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key:hover .add {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key.added {
  border: 0.53px solid #72A882;
  background-color: #D5F3DE;
  color: #10341A;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key.added .add {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key.added .hover {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys .key.added .confirm {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai .keys.hidden {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #suggest_keywords_btn {
  border-radius: 2px;
  background-color: #0042ff;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.51px;
  line-height: 19px;
  text-align: center;
  padding: 6px 14px;
  padding-bottom: 7px;
  margin-top: 15px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #suggest_keywords_btn.hide {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .keywords_ai.hide {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .selection_box.added {
  display: flex;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .selection_box.added .all {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block select {
  width: 100%;
  padding: 10px;
  padding-left: 17px;
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FCFCFC;
  padding-right: 19px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .hidden {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select2-container {
  min-width: 10em !important;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select2-container .select2-selection--single {
  height: 46px;
  padding: 7px 8px;
  font-weight: 400;
  font-size: 16px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_place_preview {
  width: -moz-fit-content;
  width: fit-content;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_place_preview .card {
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  overflow: hidden;
  padding-bottom: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_place_preview .card .card-title {
  font-weight: 500;
  line-height: 40px;
  margin-left: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_place_preview .card #local_business_place_address {
  margin: 0;
  font-size: 15px;
  margin-top: -9px;
  margin-left: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_select_preloader {
  width: 100%;
  margin-left: auto;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_select_preloader .progress {
  position: relative;
  height: 4px;
  margin: 0;
  display: block;
  width: 100%;
  background-color: #bbcdff;
  border-radius: 2px;
  margin: .5rem 0 1rem;
  overflow: hidden;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_select_preloader .progress .indeterminate {
  background-color: #0042FF;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_select_preloader .progress .indeterminate:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block #local_business_select_preloader .progress .indeterminate:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block .title-only .top {
  border-bottom: unset;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.toggle.inactive .top {
  padding-bottom: 0;
  border-bottom: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.toggle.inactive .bottom {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .explainer {
  color: #5C5B5B;
  font-size: 16px;
  letter-spacing: -0px;
  line-height: 19px;
  margin-top: 11px;
  margin-bottom: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 11px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) {
  width: 65%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap {
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap button {
  border-radius: 2px;
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  position: absolute;
  padding: 9px 15px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap input {
  border: 0.54px solid #CCCCCC;
  border-radius: 3.73px;
  width: 100%;
  background-color: #F9F9F9;
  padding: 13px 18px;
  color: #292929;
  font-size: 16.77px;
  font-weight: 500;
  letter-spacing: -0.46px;
  line-height: 20px;
  padding-left: 28px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap input::-moz-placeholder {
  color: #575757;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap input::placeholder {
  color: #575757;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .select_wrap h4 {
  color: #3F3F3F;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.39px;
  line-height: 17px;
  margin-top: 17px;
  margin-bottom: 8px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .select_wrap .selectors {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px 20px;
  grid-template-areas: ". . . ." ". . . .";
  gap: 7px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .select_wrap .selectors div {
  border: 0.54px solid #B8B8B8;
  border-radius: 3.68px;
  background-color: #FDFDFD;
  padding: 11px;
  text-align: center;
  color: #292929;
  font-size: 21.15px;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .select_wrap .selectors .selected {
  border: 1px solid #6E94FF;
  border-radius: 3.68px;
  background-color: #F3F6FF;
  box-shadow: 0 1px 4px 0 rgba(230, 230, 230, 0.5);
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(2) {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E3E3E3;
  border-radius: 3px;
  background-color: #fafafa;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(2) .estimate {
  flex-wrap: wrap;
  gap: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(2) .estimate p {
  color: #575757;
  font-size: 17px;
  letter-spacing: -0.19px;
  line-height: 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 7px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(2) .estimate h3 {
  color: #2B2B2B;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 23px;
  text-align: center;
  margin-bottom: 6px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(1) {
  width: 65%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(1) .block {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(1) .block.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(2) {
  width: 35%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .bottom p {
  color: #5C5B5B;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 19px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options {
  margin-top: 22px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option {
  background: #f6f6f6;
  border-radius: 4px;
  padding: 16px;
  padding-top: 11px;
  margin-bottom: 15px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div {
  gap: 4px;
  margin-bottom: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div label {
  font-size: 17px;
  margin-left: 5px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list {
  font-size: 16px;
  margin-bottom: 9px !important;
  border-radius: 4px;
  margin-top: 16px;
  font-size: 16px;
  margin-top: 4px;
  color: #2a2a2a;
  margin-bottom: 17px !important;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list li img {
  width: 12px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type {
  background: #fff;
  border-radius: 5px;
  padding: 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_logo {
  height: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_menu {
  width: 45%;
  background: #e9e9e9;
  height: 20px;
  border-radius: 2px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_user {
  height: 21px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 80%;
  margin: 0 auto;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_img_wrapper {
  padding-bottom: 22%;
  position: relative;
  width: 35%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_img_wrapper img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_img_wrapper .time_wrap {
  position: absolute;
  bottom: 0;
  z-index: 3;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data {
  width: 65%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data .title {
  color: #292929;
  font-weight: 500;
  letter-spacing: -0.2px;
  font-size: 15px;
  line-height: 16px;
  margin: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .icon {
  margin: 0;
  border-radius: 2px;
  background-color: #FFD600;
  color: #292929;
  font-family: "Founders Grotesk";
  font-weight: 500;
  font-size: 11px;
  padding: 3px;
  letter-spacing: 0.02px;
  line-height: 9.97px;
  text-align: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .channel {
  font-size: 12px;
  color: #343434;
  margin: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .views {
  font-size: 12px;
  color: #343434;
  margin: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data .desc {
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 4px;
  line-height: 16px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing.dummy .listing_img_wrapper {
  background: #e9e9e9;
  border-radius: 3px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing.dummy .listing_data .title {
  height: 17px;
  width: 70%;
  background: #e9e9e9;
  border-radius: 2px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing.dummy .listing_data div {
  height: 13px;
  margin-top: 4px;
  width: 50%;
  background: #e9e9e9;
  border-radius: 2px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing.dummy .listing_data .desc {
  height: 36px;
  width: 70%;
  background: #e9e9e9;
  border-radius: 2px;
  margin-top: 6px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing:last-child {
  margin-top: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option:last-child {
  margin-bottom: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad .select_group {
  padding: 0;
  border: unset;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .switch_buttons {
  flex-wrap: wrap;
  gap: 8px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .switch_buttons button {
  text-align: left;
  padding-left: 16px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .data_input {
  margin-top: 27px;
  border-top: 1px solid #e7e7e7;
  padding-top: 19px;
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .data_input .input_block {
  margin-bottom: 8px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .data_input .input_block p {
  margin-bottom: 4px;
  font-size: 15px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .data_input .input_block p span {
  font-weight: 500;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .data_input.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .note {
  border: 1px solid #e4e4e4;
  margin-top: 15px;
  padding: 13px 18px;
  padding-bottom: 19px;
  background: #f4f4f4;
  border-radius: 4px;
  margin-top: 20px;
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .note p:nth-child(1) {
  font-weight: 500;
  margin-bottom: -2px;
  font-size: 15px;
  font-size: 15px;
  margin-bottom: 0px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .note p:nth-child(2) {
  line-height: 19px;
  letter-spacing: 0.1px;
  font-size: 15px;
  color: #555555;
  font-size: 15px;
  line-height: 19px;
  color: #464646;
  letter-spacing: 0.1px;
  margin-bottom: 1px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.block-write-ads .note.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .explainer {
  margin-top: 11px;
  margin-bottom: 15px;
  color: #5C5B5B;
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 17px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 7px;
  grid-template-areas: ". ." ". .";
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed button {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FDFDFD;
  padding: 10px;
  padding-bottom: 11px;
  width: 100%;
  color: #070707;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed button.active {
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  background-color: #F4F9FF;
  color: #2979E6;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  display: block;
  text-align: center;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed_estimate {
  margin-top: 15px;
  font-size: 16px;
  letter-spacing: 0.1px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed_estimate img {
  width: 12px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed_estimate span {
  font-weight: 500;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed_estimate span:hover {
  text-decoration: underline;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed_estimate.hide {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 10px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates .start_block {
  width: 100%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates .start_block p {
  font-size: 15px;
  margin-bottom: 3px;
  color: #4f4f4f;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates .start_block input {
  border: 0.54px solid #CCCCCC;
  border-radius: 3.73px;
  width: 100%;
  background-color: #F9F9F9;
  padding: 11px 16px;
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.46px;
  line-height: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates .end_block {
  width: 100%;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates .end_block p {
  font-size: 15px;
  margin-bottom: 3px;
  color: #4f4f4f;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates .end_block input {
  border: 0.54px solid #CCCCCC;
  border-radius: 3.73px;
  width: 100%;
  background-color: #F9F9F9;
  padding: 11px 16px;
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.46px;
  line-height: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .start_end_dates.hide {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .notes {
  color: #878787;
  font-size: 16px;
  letter-spacing: 0.1px;
  line-height: 18px;
  margin-top: 25px;
  font-weight: 300;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .notes p {
  margin-bottom: 20px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .notes ul {
  list-style: disc;
  padding-left: 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.start_date .bottom .speed {
  flex-wrap: wrap;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.start_date .bottom .speed button {
  text-align: left;
  padding: 8px;
  padding-left: 15px;
  font-size: 16px;
  border-radius: 3px;
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.start_date .bottom .speed button.active {
  text-align: left;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.start_date .bottom .speed button.active:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  background: #fff;
  border-radius: 50px;
  border: 2px solid #2677E5;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-game {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-game .slim {
  padding-bottom: 0;
  border: unset;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-game .specific_game_input {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-game .specific_game_input .helper {
  margin-bottom: 0;
  font-size: 14px;
  color: #868686;
  margin-top: 5px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-game .specific_game_input.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.title-only .top {
  border-bottom: 0;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .build-ad-local {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .build-ad-local.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-game.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks input[type=text] {
  width: 100%;
  padding: 10px;
  padding-left: 17px;
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FCFCFC;
  padding-right: 19px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show .no-border {
  border: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show .helper {
  margin-bottom: 0;
  font-size: 14px;
  color: #868686;
  margin-top: 5px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show .explainer {
  color: #5C5B5B;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 19px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show .switch_buttons {
  margin-top: 6px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show .website_clicks {
  margin-top: 19px;
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show .website_clicks .select_wrap {
  margin-bottom: 7px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music.show .website_clicks.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.targeting-music {
  display: none;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.targeting-music .input_wrap {
  position: relative;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.targeting-music .input_wrap button {
  border-radius: 2px;
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  position: absolute;
  padding: 9px 15px;
}

.new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.targeting-music.show {
  display: block;
}

.new-campaign-page .new-campaign .step .step-wrapper .preview {
  width: 45%;
  padding-right: 0;
  padding-left: 50px;
}

.new-campaign-page .new-campaign .step .step-wrapper .preview .preview_back {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translateX(-50px);
  background: #fff;
  z-index: 0;
  border-left: 1px solid #DFDFDF;
}

.new-campaign-page .new-campaign .step .step-wrapper .preview .wrapper {
  z-index: 3;
  position: relative;
}

.new-campaign-page .new-campaign .step-1 .top p {
  color: #676767;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 18px;
  margin-bottom: -3px;
  margin: 0;
}

.new-campaign-page .new-campaign .step-1 .top h1 {
  color: #000000;
  font-size: 37px;
  font-weight: 600;
  letter-spacing: -1.12px;
  line-height: 42px;
  margin-bottom: 10px;
  margin-top: 0;
}

.new-campaign-page .new-campaign .step-1 .action_wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(1) .input_wrap {
  position: relative;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(1) .input_wrap form input {
  border: .54px solid #B8B8B8;
  border-radius: 4px;
  width: 100%;
  padding: 12px 16px;
  background-color: #fcfcfc;
  color: #424242;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.28px;
  line-height: 20px;
  width: 650px;
  height: unset;
  margin: 0;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(1) .input_wrap form button {
  background: #0042ff;
  padding: 5px 15px;
  padding-bottom: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.54px;
  line-height: 21.6px;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: right;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper {
  display: flex;
  align-items: start;
  gap: 0;
  position: relative;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper select {
  padding: 10px 16px;
  padding-bottom: 11px;
  background-color: #fcfcfc;
  border-radius: 50px;
  padding-right: 40px;
  border: 1.15px solid #DFDFDF;
  color: #515151;
  font-family: "Founders Grotesk";
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  text-align: left;
  cursor: pointer;
  display: block;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper .select_button {
  position: absolute;
  background: #234EF2;
  padding: 12px 9px;
  border-radius: 50px;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper .select_button img {
  display: block;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper.disabled .select_button {
  background: #b0b3bd;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper.disabled select {
  background: #f8f8f8;
  cursor: not-allowed;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper.disabled select {
  background-color: #f8f8f8;
  border: 1.15px solid #e8e8e8;
}

.new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper.disabled .select_button {
  background: #b8b8b8;
}

.new-campaign-page .new-campaign .step-1 #step1_video_blocked {
  display: none;
}

.new-campaign-page .new-campaign .step-1 #step1_video_blocked a div {
  border-radius: 4.33px;
  background-color: #FBFBFB;
  text-align: center;
  padding: 40px;
  margin-top: 21px;
  margin-bottom: 100px;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}

.new-campaign-page .new-campaign .step-1 #step1_video_blocked a div h2 {
  font-size: 20px;
  font-weight: 500;
}

.new-campaign-page .new-campaign .step-1 #step1_video_blocked a div p {
  color: #575757;
}

.new-campaign-page .new-campaign .step-1 .content_wraper {
  position: relative;
}

.new-campaign-page .new-campaign .step-1 .content_wraper .spinner {
  border-radius: 50%;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
  border: 4px solid #1c4eff;
  width: 40px;
  height: 40px;
}

.new-campaign-page .new-campaign .step-1 .content_wraper .spinner_wrap {
  display: none;
}

.new-campaign-page .new-campaign .step-1 .spinner_wrap.active {
  left: 0;
  display: block;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  background: #ffffffed;
  border: 1px solid #e1e1e1;
  padding-top: 50px;
  z-index: 7;
  height: 100%;
  min-height: 210px;
  top: 0;
  text-align: center;
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

.new-campaign-page .new-campaign .step-1 .no_results {
  border-radius: 4px;
  background-color: #FFFFFF;
  margin-top: 15px;
  text-align: center;
  padding: 64px 18px;
  font-size: 15px;
  color: #141414;
  margin-bottom: 13px;
  border: 1px solid #eaeaea;
  display: none;
}

.new-campaign-page .new-campaign .step-1 .no_results a {
  cursor: pointer;
  color: #234ef2;
  text-decoration: underline;
}

.new-campaign-page .new-campaign .step-1 .no_results.active {
  display: block;
}

.new-campaign-page .new-campaign .step-1 .load_more_videos {
  border: 0.85px solid #244FF2;
  border-radius: 2px;
  background-color: #244FF2;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  text-align: center;
  padding: 11px 25px;
  cursor: pointer;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}

.new-campaign-page .new-campaign .step-1 .load_more_videos button {
  background: unset;
  border: unset;
}

.new-campaign-page .new-campaign .step-1 .load_more_videos.hidden {
  border: 0.85px solid #5f6277;
  border-radius: 2px;
  background-color: #a0a3b0;
  color: #fbfbfb;
}

.new-campaign-page .new-campaign .step-1 .content {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 14px 8px;
  grid-template-areas: ". . . . ." ". . . . .";
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap {
  border: 1.1px solid #E3E3E3;
  border-radius: 5.5px;
  background-color: #FFFFFF;
  padding: 9px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .img_wrapper {
  position: relative;
  padding-bottom: 56.5%;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .shorts {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0 0 5px;
  padding: 5px;
  padding-left: 6px;
  padding-bottom: 6px;
  background-color: #f3f3f3;
  display: none;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .shorts img {
  right: 0;
  top: 0;
  z-index: 4;
  background: #ffffffcf;
  padding: 4px;
  width: 22px;
  height: 25px;
  border-radius: 0 0 0 4px;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .shorts.show {
  display: block;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .shorts.show img {
  display: block;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  position: absolute;
  height: 100%;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .data_wrapper {
  position: relative;
  transform: unset;
  left: unset;
  justify-content: start;
  padding-left: 1px;
  padding-top: 8px;
  gap: 6px;
  padding-bottom: 0;
  font-size: 14px;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  color: #000000;
  font-family: "Founders Grotesk";
  letter-spacing: -0.46px;
  line-height: 17px;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .data_wrapper p:nth-child(1) {
  letter-spacing: -0.20px;
  padding: 3px 6px;
  border-radius: 5px;
  margin: 0;
  background-color: #ededed;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .data_wrapper p:nth-child(2) {
  letter-spacing: -0.20px;
  padding: 3px 6px;
  border-radius: 5px;
  margin: 0;
  background-color: #ededed;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .data_wrapper b {
  font-weight: 500;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap .video .video_name {
  margin-top: 7px;
  margin-bottom: 0px;
  color: #000000;
  font-size: 17.6px;
  font-weight: 500;
  letter-spacing: -0.56px;
  line-height: 22px;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap:hover {
  border-color: #0042ff;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap:hover .video .data_wrapper {
  display: flex;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap:hover .video .data_wrapper p {
  background-color: #f3f3f3;
}

.new-campaign-page .new-campaign .step-1 .content .video_wrap:hover .video .shorts {
  background-color: #f3f3f3;
}

.new-campaign-page .new-campaign .step-3 {
  display: none;
  justify-content: space-between;
  gap: 40px;
}

.new-campaign-page .new-campaign .step-3 .payment {
  width: 60%;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap {
  width: 90%;
  margin: 0 auto;
  max-width: 470px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block {
  border: 1.14px solid #E6E6E6;
  border-radius: 4.55px;
  background-color: #FFFFFF;
  margin-bottom: 13px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block p {
  margin: 0;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block .heading {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.61px;
  line-height: 23px;
  padding: 13px 20px;
  border-bottom: 1px solid #E0E0E0;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.checkmark-single label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  padding-right: 19px;
  color: #000000;
  font-size: 17px;
  letter-spacing: -0.54px;
  line-height: 20px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content {
  padding: 14px 20px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 14px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type {
  padding: 6px 9px;
  border: 1.08px solid #E6E7E8;
  border-radius: 3.24px;
  cursor: pointer;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type img {
  height: 19px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type .checked img {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(1) {
  padding: 8.5px 9px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(1) img {
  height: 14px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(2) {
  padding: 8.5px 9px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(2) img {
  height: 14px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:hover {
  border: 1.08px solid #d9d9d9;
  background: #fcfcfc;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type.selected {
  border: 0.54px solid #0042FF;
  border-radius: 3.24px;
  background-color: #F4F9FF;
  position: relative;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type.selected .checked img {
  display: block;
  position: absolute;
  height: 15px;
  width: 15px;
  top: 0;
  transform: translate(30%, -40%);
  right: 0;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action .block {
  display: none;
  border: none;
  margin-top: 17px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action .block.show {
  display: block;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action .spinner_wrap {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action.disabled:nth-child(1) .spinner_wrap {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: none;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action.off .card_input_block input {
  opacity: 0.7;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .sub_heading_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  margin-top: 19px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .sub_heading_wrap p {
  color: #000000;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: -0.51px;
  line-height: 19px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .sub_heading_wrap img {
  width: 13px;
  margin-right: 5px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method {
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid #E1E1E1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(1) img {
  height: 17px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(1) p {
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.29px;
  line-height: 18px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 9px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(2) p {
  color: #000000;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.29px;
  line-height: 18px;
  text-align: right;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(2) img {
  padding: 9px;
  border: 1px solid #DEDEDE;
  border-radius: 2px;
  background-color: #F9F9F9;
  width: 20px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method.selected {
  border: 1px solid #6089FF;
  background-color: #F9FAFF;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method.selected .method_side:nth-child(2) img {
  padding: 4px;
  border-radius: 2px;
  background-color: #0042FF;
  width: 20px;
  border: 1px solid #0042FF;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved.active {
  display: block;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods.none {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods.inactive {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form {
  padding: 18px 20px;
  padding-bottom: 20px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 12px;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap {
  width: 100%;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap p {
  color: #4C4C4C;
  font-size: 14px;
  letter-spacing: -0.28px;
  line-height: 17px;
  margin-bottom: 4px;
  margin-top: 0;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap input {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 19px;
  padding: 10px 14px;
  width: 100%;
  color: #3A3A3A;
  height: unset;
  width: -webkit-fill-available;
  margin-bottom: 0;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap select {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 19px;
  padding: 10px 14px;
  padding-left: 11px;
  width: 100%;
  color: #3A3A3A;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row:nth-child(1) {
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information.active {
  display: block;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

.new-campaign-page .new-campaign .step-3 .payment .payment_wrap .payment_action.disabled:nth-child(1):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #7777773d;
  height: 100%;
  border-radius: 4px;
}

.new-campaign-page .new-campaign .step-3 .summary {
  width: 40%;
  border: 1px solid #DFDFDF;
  border-top: unset;
  background-color: #FFFFFF;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper {
  padding-top: 44px;
  padding-bottom: 30px;
  max-width: 370px;
  margin: 0 auto;
  height: calc(100% - 220px);
  display: flex;
  flex-wrap: wrap;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info {
  border: 0.5px solid #BCBCBC;
  opacity: 0.97;
  border-radius: 3px;
  background-color: #FFFFFF;
  margin-bottom: 14px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .head_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 0.5px solid #BCBCBC;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .head_row h1 {
  color: #131313;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.61px;
  line-height: 23px;
  margin: 0;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .head_row p {
  color: #6E6E6E;
  font-size: 15px;
  letter-spacing: -0.35px;
  line-height: 18px;
  text-align: right;
  cursor: pointer;
  margin: 0;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block {
  border-bottom: 0.5px solid #BCBCBC;
  padding: 10px 18px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row .column:first-child p {
  color: #5C5C5C;
  font-size: 17px;
  letter-spacing: -0.28px;
  line-height: 20px;
  margin: 0;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row .column:nth-child(2) p {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.28px;
  line-height: 20px;
  text-align: right;
  margin: 0;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row .column:nth-child(2) img {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2),
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2),
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2) {
  padding-right: 10px;
  padding-left: 25px;
  transform: translateX(10px);
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover {
  position: relative;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover img,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover img,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover img {
  height: 20px;
  width: 20px;
  border-radius: 10.5px;
  background-color: #777777;
  padding: 4px;
  display: block;
  position: absolute;
  left: -1px;
  top: 0.5px;
  z-index: 3;
  cursor: pointer;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover p,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover p,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover p {
  margin-bottom: 0px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover p:after,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover p:after,
.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover p:after {
  position: absolute;
  content: none;
  width: 100%;
  height: 115%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #DFDFDF;
  border-radius: 14px;
  background-color: #F9F9F9;
  padding: 2px;
  padding-right: 9px;
  top: 52%;
  left: 47%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row:last-child {
  margin-bottom: 0;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row.show {
  display: flex;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row {
  border-bottom: 0.5px solid #BCBCBC;
  padding: 10px 18px;
  padding-top: 8px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row p {
  color: #787878;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.23px;
  line-height: 17px;
  margin-bottom: 4px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap {
  position: relative;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=text] {
  width: 100%;
  border: 0.5px solid #BCBCBC;
  padding: 8px 14px;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #3A3A3A;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 19px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=button] {
  position: absolute;
  right: 4px;
  border-radius: 2px;
  background-color: #0021E7;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=button]:hover {
  background-color: #0017a4;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row.hidden {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .total_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .total_row p:nth-child(1) {
  opacity: 0.9;
  color: #000000;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.53px;
  line-height: 23px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .total_row p:nth-child(2) {
  color: #000000;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.28px;
  line-height: 23px;
  text-align: right;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit {
  border: 0.5px solid #BCBCBC;
  border-radius: 3px;
  background-color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit .budget {
  display: flex;
  margin-left: 14px;
  color: #3A3A3A;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 23px;
  gap: 8px;
  width: 100%;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit .budget img {
  cursor: pointer;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit input, .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit button {
  border: 0.85px solid #244FF2;
  border-radius: 2px;
  background-color: #244FF2;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  text-align: center;
  padding: 9px 14px;
  cursor: pointer;
  position: relative;
  min-width: 160px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit button {
  width: 100%;
  min-width: 170px;
  transition-duration: 0.2s;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit button:hover {
  background-color: #002acb;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit input:disabled, .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit button:disabled {
  border: 0.85px solid #C7C7C7;
  background-color: #E0E0E0;
  color: #9F9F9F;
  cursor: not-allowed;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit .spinner_wrap {
  display: none;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit .spinner_wrap.active {
  top: 17%;
  left: 0;
  display: block;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  background: #0042ff;
  text-align: center;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .complete_edit .spinner_wrap.active .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy {
  display: flex;
  gap: 18px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option {
  display: flex;
  align-items: center;
  gap: 5px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label {
  display: flex;
  gap: 5px;
  color: #6A6A6A;
  font-size: 16px;
  letter-spacing: -0.25px;
  line-height: 17px;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-around;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div img {
  width: 10px;
  position: absolute;
  z-index: 4;
  display: -webkit-inline-box;
  display: none;
  pointer-events: none;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div input:checked ~ img {
  display: block;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div input {
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  background-color: #F7F7F7;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  width: 1.15em;
  height: 1.15em;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  border: unset;
  display: grid;
  place-content: center;
  margin-top: 4px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"]::before {
  content: "";
  width: 100%;
  height: 100%;
  transform-origin: bottom left;
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  background-color: #F7F7F7;
  position: absolute;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"]:checked::before {
  background-color: #244FF2;
  border: 1px solid #244FF2;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom {
  width: 100%;
  margin-bottom: 30px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .top {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px 2px 0 0;
  background-color: #FFFFFF;
  padding: 13px 15px;
  margin-top: 100px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .top h3 {
  color: #131313;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  margin-bottom: -1px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .top p {
  color: #6C6C6C;
  font-size: 15px;
  letter-spacing: -0.48px;
  line-height: 18px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .bottom {
  border: 0.5px solid #BCBCBC;
  border-radius: 0 0 2px 2px;
  background-color: #FFFFFF;
  padding: 12px 15px;
  border-top: unset;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .bottom .row .column:nth-child(1) {
  opacity: 0.9;
  color: #575757;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 19px;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .bottom .row .column:nth-child(2) {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 19px;
  text-align: right;
}

.new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom .overview .bottom .row:last-child {
  margin-bottom: 0;
}

.new-campaign-page .new-campaign .step-final {
  display: none;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper {
  padding: 17px;
  max-width: 560px;
  background: #fff;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 9px 1px rgba(205, 205, 205, 0.5);
  margin: 0 auto;
  margin-top: 80px;
  position: relative;
  padding-top: 50px;
  padding-right: 17px;
  border-radius: 13px 13px 8px 8px;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  margin-left: 6px;
  display: block;
  text-align: center;
  margin-left: 0;
  margin-bottom: 16px;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .top .side h1 {
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1.28px;
  line-height: 44px;
  margin-left: -3px;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -1.44px;
  line-height: 50px;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .top .side p {
  color: #595959;
  font-size: 19px;
  letter-spacing: -0.43px;
  line-height: 21px;
  font-size: 23px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: -0.4px;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .top img {
  margin: 0 auto;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 130px;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-right: 17px;
  margin: 0;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom a {
  width: 50%;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom .button {
  border-radius: 3px;
  background-color: #2756F0;
  padding: 14px;
  position: relative;
  padding-bottom: 11px;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom .button .arrow {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  padding: 10px;
  padding-left: 13px;
  padding-top: 9px;
  border-radius: 0 3.11px 0 17.6px;
  background-color: #ffffffc2;
}

.new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom .button p {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.67px;
  line-height: 25px;
  padding-top: 10px;
}

.new-campaign-page .new-campaign .step-final .list {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 40px;
}

.new-campaign-page .new-campaign .step-final .list .faq {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.19px;
  line-height: 38px;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.new-campaign-page .new-campaign .step-final .list .faq .top {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.new-campaign-page .new-campaign .step-final .list .faq .top img {
  display: block;
  width: 20px;
  margin-bottom: 10px;
  margin-right: 20px;
}

.new-campaign-page .new-campaign .step-final .list .faq .top .underline {
  display: none;
}

.new-campaign-page .new-campaign .step-final .list .faq .top h2 {
  margin-top: 30px;
  font-size: 23px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
  width: 100%;
}

.new-campaign-page .new-campaign .step-final .list .faq .bottom {
  font-weight: 300;
  line-height: 28px;
  height: 0;
  overflow: hidden;
  max-width: unset;
}

.new-campaign-page .new-campaign .step-final .list .faq .bottom p {
  margin-top: 0;
  max-width: 900px;
}

.new-campaign-page .new-campaign .step-final .list .faq.active {
  display: block;
}

.new-campaign-page .new-campaign .step-final .list .faq.active .top img {
  display: none;
}

.new-campaign-page .new-campaign .step-final .list .faq.active .top .underline {
  display: block;
}

.new-campaign-page .new-campaign .step-final .list .faq.active .bottom {
  height: auto;
  overflow: visible;
  margin-bottom: 20px;
  max-width: 100%;
}

.new-campaign-page .new-campaign .step-final.active {
  display: block;
}

.new-campaign-page .new-campaign .next_button {
  margin-top: 20px;
}

.new-campaign-page .new-campaign .next_button button {
  border-radius: 3.6px;
  background-color: #0042FF;
  padding: 10px 20px;
  color: #FFFFFF;
  font-family: "Founders Grotesk";
  font-size: 16.8px;
  font-weight: 600;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-campaign-page .new-campaign .next_button.inactive {
  display: none;
}

.new-campaign-page .new-campaign .step.active {
  display: block;
}

.new-campaign-page .new-campaign .step-3.active {
  display: flex;
}

.new-campaign-page header {
  background: #fff;
}

.new-campaign-page header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 13px 0;
  z-index: 9;
  position: relative;
}

.new-campaign-page header .wrapper .side {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-campaign-page header .wrapper .side .logo {
  display: block;
}

.new-campaign-page header .wrapper .side ul {
  gap: 8px;
  list-style: none;
  padding: unset;
  margin: unset;
  display: flex;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 18px;
}

.new-campaign-page header .wrapper .side ul li a {
  display: flex;
  gap: 6px;
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 18px;
  cursor: pointer;
}

.new-campaign-page header .wrapper .side ul li img {
  margin-left: 9px;
}

.new-campaign-page header .wrapper .side ul li:hover a {
  text-decoration: underline;
}

.new-campaign-page header .wrapper .side ul.step-1-buttons {
  display: none;
}

.new-campaign-page header .wrapper .side .progress {
  height: unset;
  width: unset;
  background: unset;
  border-radius: unset;
  margin: unset;
  margin-left: 25px;
  overflow: auto;
}

.new-campaign-page header .wrapper .side .progress ul li {
  display: flex;
  align-items: center;
  color: #6B6B6B;
}

.new-campaign-page header .wrapper .side .progress ul li img {
  margin-top: 2px;
}

.new-campaign-page header .wrapper .side .progress ul li.active {
  color: #000;
}

.new-campaign-page header .wrapper .side .progress ul li:last-child img {
  display: none;
}

.new-campaign-page header .wrapper .side .return button {
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.49px;
  line-height: 19px;
  text-align: right;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  background-color: #FBFBFB;
  padding: 9px 14px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.new-campaign-page header .wrapper .side .return p {
  margin: 0;
}

.new-campaign-page header .wrapper .side:nth-child(1) {
  gap: 12px;
}

.new-campaign-page footer {
  display: none;
}

.new-campaign-page .step-1-buttons {
  display: none;
}

.new-campaign-page .step-3 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.new-campaign-page .step-3 .payment {
  width: 60%;
}

.new-campaign-page .step-3 .payment .payment_wrap {
  width: 90%;
  margin: 0 auto;
  max-width: 470px;
  margin-top: 45px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block {
  border: 1.14px solid #E6E6E6;
  border-radius: 4.55px;
  background-color: #FFFFFF;
  margin-bottom: 13px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block .heading {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.61px;
  line-height: 23px;
  padding: 13px 20px;
  border-bottom: 1px solid #E0E0E0;
}

.new-campaign-page .step-3 .payment .payment_wrap .block p {
  margin: 0;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.checkmark-single label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  padding-right: 19px;
  color: #000000;
  font-size: 17px;
  letter-spacing: -0.54px;
  line-height: 20px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content {
  padding: 14px 20px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 14px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type {
  padding: 6px 9px;
  border: 1.08px solid #E6E7E8;
  border-radius: 3.24px;
  cursor: pointer;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type img {
  height: 19px;
  display: block;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type .checked img {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(1) {
  padding: 8.5px 9px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(1) img {
  height: 14px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(2) {
  padding: 8.5px 9px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:nth-last-child(2) img {
  height: 14px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type:hover {
  border: 1.08px solid #d9d9d9;
  background: #fcfcfc;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type.selected {
  border: 0.54px solid #0042FF;
  border-radius: 3.24px;
  background-color: #F4F9FF;
  position: relative;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_types .payment_type.selected .checked img {
  display: block;
  position: absolute;
  height: 15px;
  width: 15px;
  top: 0;
  transform: translate(30%, -40%);
  right: 0;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action .block {
  display: none;
  border: none;
  margin-top: 17px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action .block.show {
  display: block;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action .spinner_wrap {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action.disabled:nth-child(1) .spinner_wrap {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: none;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .payment_action.off .card_input_block input {
  opacity: 0.7;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .sub_heading_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  margin-top: 19px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .sub_heading_wrap p {
  color: #000000;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: -0.51px;
  line-height: 19px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .sub_heading_wrap img {
  width: 13px;
  margin-right: 5px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method {
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid #E1E1E1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(1) img {
  height: 17px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(1) p {
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.29px;
  line-height: 18px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 9px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(2) p {
  color: #000000;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.29px;
  line-height: 18px;
  text-align: right;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method .method_side:nth-child(2) img {
  padding: 9px;
  border: 1px solid #DEDEDE;
  border-radius: 2px;
  background-color: #F9F9F9;
  width: 20px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method.selected {
  border: 1px solid #6089FF;
  background-color: #F9FAFF;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved .saved_method.selected .method_side:nth-child(2) img {
  padding: 4px;
  border-radius: 2px;
  background-color: #0042FF;
  width: 20px;
  border: 1px solid #0042FF;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods .all_saved.active {
  display: block;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods.none {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.payment-method .block_content .saved_methods.inactive {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container.inactive {
  cursor: not-allowed;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container.inactive .block {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col {
  padding: 0;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col .card-panel {
  margin: 0;
  border: unset;
  padding: 10px 20px;
  line-height: 18px;
  margin: 0;
  color: #4d4d4d !important;
  letter-spacing: 0.1px;
  background: #ffffff8a;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container {
  padding: 20px 17px;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-large-button {
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  /*background-color: #F4F9FF !important;*/
  width: 100%;
  color: #2979E6;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 10px;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-large-button span {
  border: unset;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-paypal .braintree-placeholder, .new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-placeholder, .new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-venmo .braintree-placeholder, .new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-googlePay .braintree-placeholder, .new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container braintree-show-applePay .braintree-placeholder {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card {
  background: linear-gradient(165.95deg, #21AEF6 0%, #0E76EA 100%);
  border: unset;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__header {
  border: unset;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__header .braintree-sheet__header-label {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__header .braintree-sheet__icons {
  scale: 0.9;
  transform-origin: left;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group {
  margin-top: 20px;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label {
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: -0.47px;
  line-height: 17px;
  font-weight: 300;
  display: block;
  margin-bottom: 4px;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label span {
  color: #ffffffba;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group .braintree-form__field .braintree-form__hosted-field {
  background: #ffffffe8;
  border: unset;
  border-radius: 6px;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__flexible-fields .braintree-form__field-group {
  margin-top: 0;
}

.new-campaign-page .step-3 .payment .payment_wrap #payment_from_container .block .col #dropin-container .braintree-hidden {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information {
  padding-bottom: 20px;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .inputs_wrap {
  padding: 0 18px;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .row:after {
  content: unset;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .row .col {
  width: 50%;
  margin-top: 7px;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .row .col input {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 19px;
  padding: 11px 14px;
  width: 100%;
  color: #3A3A3A;
  height: unset;
  width: -webkit-fill-available;
  margin-bottom: 0;
  margin-top: 7px;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .row .col label {
  position: relative;
  left: 0;
  padding: 0;
  transform: unset;
  font-size: 14px;
  top: -5px;
  left: 15px;
  color: #6b6b6b;
  font-weight: 400;
  transform: unset;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
  position: absolute;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .addressFields {
  width: 100%;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .addressFields .col {
  width: 100%;
}

.new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .addressFields select {
  margin-top: 6px;
  border: 0.5px solid #BCBCBC;
  padding: 10px 9px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 19px;
  height: unset;
  border-radius: 2px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information {
  display: none;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form {
  padding: 18px 20px;
  padding-bottom: 20px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 12px;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap {
  width: 100%;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap p {
  color: #4C4C4C;
  font-size: 14px;
  letter-spacing: -0.28px;
  line-height: 17px;
  margin-bottom: 4px;
  margin-top: 0;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap input {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 19px;
  padding: 10px 14px;
  width: 100%;
  color: #3A3A3A;
  height: unset;
  width: -webkit-fill-available;
  margin-bottom: 0;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap .select-wrapper input {
  max-width: unset;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap select {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 19px;
  padding: 10px 14px;
  padding-left: 11px;
  width: 100%;
  color: #3A3A3A;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row:nth-child(1) {
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.new-campaign-page .step-3 .payment .payment_wrap .block.billing-information.active {
  display: block;
}

.new-campaign-page .step-3 .payment .payment_wrap .payment_action.disabled:nth-child(1):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #7777773d;
  height: 100%;
  border-radius: 4px;
}

.new-campaign-page .step-3 .summary {
  width: 40%;
  border: 1px solid #DFDFDF;
  border-top: unset;
  background-color: #FFFFFF;
}

.new-campaign-page .step-3 .summary .summary_wrapper {
  padding-top: 44px;
  padding-bottom: 30px;
  max-width: 370px;
  margin: 0 auto;
  height: calc(100% - 220px);
  display: flex;
  flex-wrap: wrap;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info {
  border: 0.5px solid #BCBCBC;
  opacity: 0.97;
  border-radius: 3px;
  background-color: #FFFFFF;
  margin-bottom: 14px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .head_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 0.5px solid #BCBCBC;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .head_row h1 {
  color: #131313;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.61px;
  line-height: 23px;
  margin: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .head_row p {
  color: #6E6E6E;
  font-size: 15px;
  letter-spacing: -0.35px;
  line-height: 18px;
  text-align: right;
  cursor: pointer;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block {
  border-bottom: 0.5px solid #BCBCBC;
  padding: 10px 18px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row .column:first-child p {
  color: #5C5C5C;
  font-size: 17px;
  letter-spacing: -0.28px;
  line-height: 20px;
  margin: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row .column:nth-child(2) p {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.28px;
  line-height: 20px;
  text-align: right;
  margin: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row .column:nth-child(2) img {
  display: none;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2),
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2),
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2) {
  padding-right: 10px;
  padding-left: 25px;
  transform: translateX(10px);
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover {
  position: relative;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover img,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover img,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover img {
  height: 20px;
  width: 20px;
  border-radius: 10.5px;
  background-color: #777777;
  padding: 4px;
  display: block;
  position: absolute;
  left: -1px;
  top: 0.5px;
  z-index: 3;
  cursor: pointer;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover p,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover p,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover p {
  margin-bottom: 0px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2):hover p:after,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2):hover p:after,
.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2):hover p:after {
  position: absolute;
  content: none;
  width: 100%;
  height: 115%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #DFDFDF;
  border-radius: 14px;
  background-color: #F9F9F9;
  padding: 2px;
  padding-right: 9px;
  top: 52%;
  left: 47%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row:last-child {
  margin-bottom: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row.show {
  display: flex;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .promo_row {
  border-bottom: 0.5px solid #BCBCBC;
  padding: 10px 18px;
  padding-top: 8px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .promo_row p {
  color: #787878;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.23px;
  line-height: 17px;
  margin-bottom: 4px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap {
  position: relative;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=text] {
  width: 100%;
  border: 0.5px solid #BCBCBC;
  padding: 8px 14px;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #3A3A3A;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 19px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=button] {
  position: absolute;
  right: 4px;
  border-radius: 2px;
  background-color: #0021E7;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=button]:hover {
  background-color: #0017a4;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .promo_row.hidden {
  display: none;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .total_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .total_row p:nth-child(1) {
  opacity: 0.9;
  color: #000000;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.53px;
  line-height: 23px;
  margin: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .total_row p:nth-child(2) {
  color: #000000;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.28px;
  line-height: 23px;
  text-align: right;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .summary_info .total_row input {
  width: -moz-fit-content;
  width: fit-content;
  min-width: unset;
  text-align: right;
  background: unset;
  border: unset;
  margin: 0;
  height: 25px;
  font-size: 19px;
  letter-spacing: -0.53px;
  line-height: 23px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit {
  border: 0.5px solid #BCBCBC;
  border-radius: 3px;
  background-color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit .budget {
  display: flex;
  margin-left: 14px;
  color: #3A3A3A;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 23px;
  gap: 8px;
  width: 100%;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit .budget img {
  cursor: pointer;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit input, .new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit button {
  border: 0.85px solid #244FF2;
  border-radius: 2px;
  background-color: #244FF2;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  text-align: center;
  padding: 9px 14px;
  cursor: pointer;
  position: relative;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit button {
  min-width: 170px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit input:disabled, .new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit button:disabled {
  border: 0.85px solid #C7C7C7;
  background-color: #E0E0E0;
  color: #9F9F9F;
  cursor: not-allowed;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit .spinner_wrap {
  display: none;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit .spinner_wrap.active {
  top: 17%;
  left: 0;
  display: block;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  background: #0042ff;
  text-align: center;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .complete_edit .spinner_wrap.active .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy {
  display: flex;
  gap: 18px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option {
  display: flex;
  align-items: center;
  gap: 5px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label {
  display: flex;
  gap: 5px;
  color: #6A6A6A;
  font-size: 16px;
  letter-spacing: -0.25px;
  line-height: 17px;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-around;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div img {
  width: 10px;
  position: absolute;
  z-index: 4;
  display: -webkit-inline-box;
  display: none;
  pointer-events: none;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div input:checked ~ img {
  display: block;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div input {
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  background-color: #F7F7F7;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  width: 1.15em;
  height: 1.15em;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  border: unset;
  display: grid;
  place-content: center;
  margin-top: 4px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"]::before {
  content: "";
  width: 100%;
  height: 100%;
  transform-origin: bottom left;
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  background-color: #F7F7F7;
  position: absolute;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"]:checked::before {
  background-color: #244FF2;
  border: 1px solid #244FF2;
}

.new-campaign-page .step-3 .summary .summary_wrapper .top .policy .option label div input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom {
  width: 100%;
  margin-bottom: 30px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .top {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px 2px 0 0;
  background-color: #FFFFFF;
  padding: 13px 15px;
  margin-top: 100px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .top h3 {
  color: #131313;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  margin-bottom: -1px;
  margin: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .top p {
  color: #6C6C6C;
  font-size: 15px;
  letter-spacing: -0.48px;
  line-height: 18px;
  margin: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .bottom {
  border: 0.5px solid #BCBCBC;
  border-radius: 0 0 2px 2px;
  background-color: #FFFFFF;
  padding: 12px 15px;
  border-top: unset;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .bottom .row .column:nth-child(1) {
  opacity: 0.9;
  color: #575757;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 19px;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .bottom .row .column:nth-child(2) {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 19px;
  text-align: right;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .bottom .row:last-child {
  margin-bottom: 0;
}

.new-campaign-page .step-3 .summary .summary_wrapper .bottom .overview .bottom .row:after {
  content: none;
}

.new-campaign-page .dropdown-content {
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  max-height: 650px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  z-index: 999;
  will-change: width,height;
  top: 35px !important;
  left: unset !important;
  padding: 10px;
  font-weight: 400;
  top: 21.75px;
  right: 10px !important;
  white-space: normal;
  position: absolute;
  left: 263.109px;
  opacity: 1;
  box-shadow: 0px 0px 5px 0px rgba(66, 66, 66, 0.24);
  border-radius: 3px;
  min-width: 130px;
}

.new-campaign-page .dropdown-content label {
  font-size: 12px;
  display: block !important;
  color: #000;
}

.new-campaign-page .dropdown-content .dropdown_wrapper {
  display: flex;
  min-width: 80px;
  border-radius: 4px;
  padding: 3px;
  padding-left: 9px;
  font-size: 13px;
  pointer-events: all;
  border: 1px solid #DDDDDD;
  margin-top: 4px;
  width: 100%;
  line-height: 15px;
}

.new-campaign-page .dropdown-content .input-field:nth-child(1) {
  min-width: 20px;
  margin-right: 10px;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fill-available;
  margin: 0;
}

.new-campaign-page .dropdown-content .input-field:nth-child(1) input {
  line-height: 23px;
  width: 100%;
  margin: 0;
  height: unset;
  border: none;
  background: none;
}

.new-campaign-page .dropdown-content .input-field:nth-child(2) {
  margin: 0;
}

.new-campaign-page .dropdown-content .input-field:nth-child(2) select {
  width: 100% !important;
  min-width: 27px !important;
  text-align: center !important;
  padding: 5px !important;
  padding-top: 2px !important;
  padding-bottom: 0px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding-bottom: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border: 0.54px solid #B8B8B8 !important;
  border-radius: 4px !important;
  background-color: #FCFCFC !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  margin-right: 0 !important;
  margin-left: auto !important;
  height: unset;
}

.new-campaign-page .dropdown-content .a_wrapper {
  text-align: center;
  width: 100%;
}

.new-campaign-page .dropdown-content .a_wrapper a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 14px;
  padding: 5px 13px;
  padding-bottom: 8px;
  background: #0042FF;
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  margin-top: 5px;
  width: 100%;
  height: unset;
}

.new-campaign-page .dropdown-content li {
  clear: both;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  min-height: 50px;
  line-height: 1.5rem;
  width: 100%;
  text-align: left;
  text-transform: none;
}

.new-campaign-page .dropdown-content li.active, .new-campaign-page .dropdown-content li.selected, .new-campaign-page .dropdown-content li:hover {
  background-color: #eee;
}

.new-campaign-page .dropdown-content li.active.selected {
  background-color: #e1e1e1;
}

.new-campaign-page .dropdown-content li.divider {
  min-height: 0;
  height: 1px;
}

.new-campaign-page .dropdown-content li > a, .new-campaign-page .dropdown-content li > span {
  font-size: 16px;
  color: #4292ff;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
}

.new-campaign-page .dropdown-content li > span > label {
  top: 1px;
  left: 0;
  height: 18px;
}

.new-campaign-page .dropdown-content li > a > i {
  height: inherit;
  line-height: inherit;
}

#braintreeForm #braintreeAddress {
  padding: 0;
}

#braintreeForm .notice {
  padding-left: 0;
  padding-right: 0;
}

#braintreeForm .new_cover {
  padding: 0;
  margin-top: 10px;
}

#braintreeForm .new_cover #dropin-container {
  padding: 0;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-upper-container,
#braintreeForm .new_cover #dropin-container .braintree-show-venmo .braintree-upper-container,
#braintreeForm .new_cover #dropin-container .braintree-show-googlePay .braintree-upper-container,
#braintreeForm .new_cover #dropin-container .braintree-show-applePay .braintree-upper-container {
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #dddddd;
  margin-bottom: 20px;
  margin-top: 10px;
}

#braintreeForm .new_cover #dropin-container .braintree-upper-container:before {
  background: unset;
}

#braintreeForm .new_cover #dropin-container .braintree-show-methods .braintree-upper-container .braintree-methods {
  margin-bottom: 15px;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-upper-container:before,
#braintreeForm .new_cover #dropin-container .braintree-show-venmo .braintree-upper-container:before,
#braintreeForm .new_cover #dropin-container .braintree-show-googlePay .braintree-upper-container:before,
#braintreeForm .new_cover #dropin-container .braintree-show-applePay .braintree-upper-container:before {
  bottom: 0;
  background-color: #FAFAFA;
}

#braintreeForm .new_cover #dropin-container .braintree-sheet__container {
  max-width: 500px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

#braintreeForm .new_cover #dropin-container .braintree-options {
  margin-top: 20px;
}

#braintreeForm .new_cover #dropin-container .braintree-options .braintree-options {
  margin: 0;
}

#braintreeForm .new_cover #dropin-container .braintree-large-button {
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  background-color: #F4F9FF !important;
  width: 100%;
  color: #2979E6;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 10px;
  transition-duration: 0.2s;
}

#braintreeForm .new_cover #dropin-container .braintree-large-button span {
  border: unset;
}

#braintreeForm .new_cover #dropin-container .braintree-large-button:hover {
  background-color: #0c71fe !important;
  color: #fff !important;
}

#braintreeForm .new_cover #dropin-container .braintree-show-paypal .braintree-placeholder, #braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-placeholder, #braintreeForm .new_cover #dropin-container .braintree-show-venmo .braintree-placeholder, #braintreeForm .new_cover #dropin-container .braintree-show-googlePay .braintree-placeholder, #braintreeForm .new_cover #dropin-container braintree-show-applePay .braintree-placeholder {
  display: none;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card {
  background: linear-gradient(165.95deg, #21AEF6 0%, #0E76EA 100%);
  border: unset;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__header {
  border: unset;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__header .braintree-sheet__header-label {
  display: none;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__header .braintree-sheet__icons {
  scale: 0.9;
  transform-origin: left;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group {
  margin-top: 20px;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label {
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: -0.47px;
  line-height: 17px;
  font-weight: 300;
  display: block;
  margin-bottom: 4px;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label span {
  color: #ffffffba;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__field-group .braintree-form__field .braintree-form__hosted-field {
  background: #ffffffe8;
  border: unset;
  border-radius: 6px;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__flexible-fields {
  flex-wrap: unset !important;
}

#braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-card .braintree-sheet__content--form .braintree-form__flexible-fields .braintree-form__field-group {
  margin-top: 0;
}

#braintreeForm .new_cover #dropin-container .braintree-hidden {
  display: none;
}

.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-upper-container,
.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-show-venmo .braintree-upper-container,
.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-show-googlePay .braintree-upper-container,
.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-show-paypal .braintree-upper-container,
.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-show-applePay .braintree-upper-container {
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
}

.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-show-methods .braintree-upper-container .braintree-methods {
  margin-bottom: 15px;
}

.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-sheet__container {
  padding: 0;
}

.new-campaign-page #braintreeForm .new_cover #dropin-container .braintree-sheet__container {
  padding: 0;
}

.new-campaign-page #braintreeForm .billing-information {
  padding-bottom: 15px !important;
}

.new-campaign-page #braintreeForm .billing-information .heading {
  margin: 0;
}

.billing-information .heading {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.77px;
  line-height: 25px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.billing-information .inputs_wrap .row {
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 5px;
}

.billing-information .inputs_wrap .row .col {
  padding: 0;
}

.billing-information .inputs_wrap .row label {
  top: -11px;
  left: 15px;
  color: #6b6b6b;
  font-weight: 400;
  transform: unset;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
  position: absolute;
}

.billing-information .inputs_wrap .row label:before {
  content: "";
  height: 3px;
  width: 100%;
  background: #fcfcfc;
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  z-index: -1;
}

.billing-information .inputs_wrap .row select {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  padding: 14px 16px;
  background-color: #FCFCFC;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 20px;
  margin: 0;
  height: auto;
}

.billing-information .inputs_wrap .row .input-field label:before {
  content: "";
  height: 3px;
  width: 100%;
  background: #fcfcfc;
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  z-index: -1;
}

.billing-information .inputs_wrap .row .input-field input {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  width: -webkit-fill-available;
  padding: 14px 16px;
  background-color: #FCFCFC;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 20px;
  margin: 0;
  height: auto;
}

.billing-information .inputs_wrap .row:after {
  content: none;
}

.new-campaign-page.current-step-1 .steps {
  display: none;
}

.new-campaign-page.current-step-1 .next_button {
  display: none;
}

.new-campaign-page.current-step-1 header .progress {
  display: none;
}

.new-campaign-page.current-step-1 header .return {
  display: none;
}

.new-campaign-page.current-step-1 header .wrapper .side ul.step-1-buttons {
  display: flex;
}

.new-campaign-page.current-step-2 .next_button {
  display: block;
}

.new-campaign-page.current-step-2 header .progress {
  display: block;
}

.new-campaign-page.current-step-2 header .return {
  display: block;
}

.new-campaign-page.current-step-2-2 .select2-results__option {
  font-size: 14px;
  line-height: 16px;
}

.new-campaign-page.current-step-3 #page-container {
  max-width: 1400px;
  width: 100%;
  margin-top: 0;
}

.confirmation_wrapper.funded {
  padding: 17px;
  max-width: 560px;
  background: #fff;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 9px 1px rgba(205, 205, 205, 0.5);
  margin: 0 auto;
  margin-top: 80px;
  position: relative;
  padding-top: 50px;
  padding-right: 17px;
  border-radius: 13px 13px 8px 8px;
}

.confirmation_wrapper.funded .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  margin-left: 6px;
  display: block;
  text-align: center;
  margin-left: 0;
  margin-bottom: 16px;
}

.confirmation_wrapper.funded .top .side h1 {
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1.28px;
  line-height: 44px;
  margin-left: -3px;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -1.44px;
  line-height: 50px;
}

.confirmation_wrapper.funded .top .side p {
  color: #595959;
  font-size: 19px;
  letter-spacing: -0.43px;
  line-height: 21px;
  font-size: 23px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: -0.4px;
}

.confirmation_wrapper.funded .top img {
  margin: 0 auto;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 130px;
}

.confirmation_wrapper.funded .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-right: 17px;
  margin: 0;
}

.confirmation_wrapper.funded .bottom a {
  width: 50%;
}

.confirmation_wrapper.funded .bottom .button {
  border-radius: 3px;
  background-color: #2756F0;
  padding: 14px;
  position: relative;
  padding-bottom: 11px;
}

.confirmation_wrapper.funded .bottom .button .arrow {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  padding: 10px;
  padding-left: 13px;
  padding-top: 9px;
  border-radius: 0 3.11px 0 17.6px;
  background-color: #ffffffc2;
}

.confirmation_wrapper.funded .bottom .button p {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.67px;
  line-height: 25px;
  padding-top: 10px;
  margin: 0;
}

.confirmation_wrapper.funded.approval .top .side p {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 20px;
  margin-top: 6px;
  letter-spacing: -0.15px;
}

.confirmation_wrapper.saved .top .side h1 {
  margin: 0 auto;
  max-width: 420px;
  margin-top: 25px;
  line-height: 45px;
  margin-bottom: 25px;
}

.confirmation_wrapper.share-form {
  margin-top: 30px;
  padding-top: 25px;
  border-radius: 5px;
}

.list.funded {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 40px;
}

.list.funded .faq {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.19px;
  line-height: 38px;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.list.funded .faq .top {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.list.funded .faq .top img {
  display: block;
  width: 20px;
  margin-bottom: 10px;
  margin-right: 20px;
}

.list.funded .faq .top .underline {
  display: none;
}

.list.funded .faq .top h2 {
  margin-top: 30px;
  font-size: 23px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
  width: 100%;
}

.list.funded .faq .bottom {
  font-weight: 300;
  line-height: 28px;
  height: 0;
  overflow: hidden;
  max-width: unset;
}

.list.funded .faq .bottom p {
  margin-top: 0;
  max-width: 900px;
}

.list.funded .faq.active {
  display: block;
}

.list.funded .faq.active .top img {
  display: none;
}

.list.funded .faq.active .top .underline {
  display: block;
}

.list.funded .faq.active .bottom {
  height: auto;
  overflow: visible;
  margin-bottom: 20px;
  max-width: 100%;
}

.button_loader {
  position: relative;
}

.button_loader .spinner_wrap_global.loading .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.button_loader .spinner_wrap {
  display: none;
}

.button_loader .spinner_wrap.loading {
  top: 17%;
  left: 0;
  display: block;
  position: absolute;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  background: #0042ff;
  text-align: center;
}

.button_loader .spinner_wrap_global.loading {
  top: 17%;
  left: 0;
  display: block;
  position: absolute;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  background: #0042ff;
  text-align: center;
}

.button_loader .fheight {
  height: 100% !important;
  top: 0 !important;
}

.new-campaign-page .new-campaign .step-1 .content_wraper .spinner_wrap_global.loading .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.card #targeting .dropdown-content .dropdown-content {
  background-color: #fff;
  margin: 0;
  max-height: 650px;
  overflow-y: auto;
  z-index: 999;
  will-change: width, height;
  left: unset !important;
  box-shadow: 0px 0px 5px 0px rgba(66, 66, 66, 0.24);
  border-radius: 3px;
  min-width: 130px;
}

.card #targeting .dropdown-content .dropdown-content label {
  font-size: 12px;
  display: block !important;
}

.card #targeting .dropdown-content .dropdown-content .input-field {
  margin: 0;
}

.card #targeting .dropdown-content .dropdown-content .dropdown_wrapper {
  display: flex;
  min-width: 80px;
  border-radius: 4px;
  padding: 3px;
  padding-left: 9px;
  font-size: 13px;
  pointer-events: all;
  border: 1px solid #DDDDDD;
  margin-top: 4px;
  width: 100%;
}

.card #targeting .dropdown-content .dropdown-content .input-field:nth-child(1) {
  min-width: 20px;
  margin-right: 10px;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fill-available;
}

.card #targeting .dropdown-content .dropdown-content .input-field:nth-child(1) input {
  margin: 0;
  height: unset;
  border: none;
  background: none;
  margin: 0;
}

.card #targeting .dropdown-content .dropdown-content .input-field:nth-child(2) select {
  width: 100% !important;
  min-width: 27px !important;
  text-align: center !important;
  padding: 5px !important;
  padding-top: 2px !important;
  padding-bottom: 0px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding-bottom: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border: 0.54px solid #B8B8B8 !important;
  border-radius: 4px !important;
  background-color: #FCFCFC !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  margin-right: 0 !important;
  margin-left: auto !important;
}

.card #targeting .dropdown-content .dropdown-content .a_wrapper {
  text-align: center;
  width: 100%;
}

.card #targeting .dropdown-content .dropdown-content .a_wrapper a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 14px;
  padding: 5px 13px;
  padding-bottom: 8px;
  background: #0042FF;
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  margin-top: 5px;
  width: 100%;
  height: unset;
}

.card .target_map {
  position: relative;
  height: 100%;
}

.card .target_map .target_map_switch {
  position: absolute;
  left: 40%;
  z-index: 3;
  top: 11px;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #dfdfdf;
}

.card .target_map .target_map_switch .place_radius_wrapper {
  width: 100%;
  position: relative;
  margin-top: 10px;
}

.card .target_map .target_map_switch .place_radius_wrapper .place_radius {
  width: 100%;
  margin: 0;
}

.card .target_map .target_map_switch .place_radius_wrapper .place_radius input {
  background: #fff;
  border: 1px solid #acacac;
  margin: 0;
  height: 38px;
}

.card .target_map .target_map_switch .place_radius_wrapper .place_radius label {
  padding: 0;
  left: 5px;
  display: none;
}

.card .target_map .target_map_switch .place_radius_wrapper .place_unit {
  position: absolute;
  right: 4px;
  width: 60px;
  padding: 0;
  z-index: 91;
  top: 50%;
  transform: translateY(calc(-50% + 5px));
}

.card .target_map .target_map_switch .place_radius_wrapper .place_unit select {
  width: 100% !important;
  height: unset;
  border: 1px solid #dddddd;
}

.card .target_map .target_map_switch .radio-wrapper {
  padding: 3px;
  padding-right: 10px;
  padding-left: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}

.card .target_map .target_map_switch .radio-wrapper input {
  display: none;
}

.card .target_map .target_map_switch .radio-wrapper label:before, .card .target_map .target_map_switch .radio-wrapper label:after {
  content: '';
  display: none;
  padding: 0;
}

.card .target_map .target_map_switch .radio-wrapper label {
  padding: 0;
}

.card .target_map .target_map_switch .radio-wrapper:has(input[type="radio"]:checked) {
  border: 1px solid #0042ff;
  margin-right: 0;
  background: #0042ff;
  border-radius: 4px;
  color: #fff;
}

.card .target_map .target_map_switch .radio-wrapper:has(input[type="radio"]:checked) label {
  color: #fff !important;
}

.card .target_map .target_map_switch label {
  padding-left: 28px;
  color: #4d4d4d;
  font-weight: 500;
}

.card .target_map .target_map_data {
  position: absolute;
  z-index: 4;
  top: 0;
  padding: 0;
  left: 10px;
  width: 35%;
  height: 100%;
}

.card .target_map .target_map_data label {
  display: none;
}

.card .target_map .target_map_data .select2-selection {
  height: 36px;
  padding: 3px;
}

.card .target_map .target_map_data .targeting-location-table-con {
  margin-top: 4px;
  overflow: scroll;
  background: rgba(255, 255, 255, 0.9);
  height: calc(100% - 60px);
  border-radius: 3px;
}

.card .target_map .target_map_data .targeting-location-table-con thead tr {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
}

.card .target_map .target_map_data .targeting-location-table-con thead tr th {
  padding: 4px 10px;
}

.card .target_map .target_map_data .targeting-location-table-con .table_heading {
  font-size: 13px;
  color: #383838;
  letter-spacing: 0.1px;
  width: 100%;
  text-align: left;
  padding: 4px 10px;
}

.card .target_map .target_map_data .targeting-location-place-con .controls {
  display: flex;
  flex-wrap: wrap;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_search {
  width: 100%;
  padding: 0;
  margin-bottom: 0px;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_search label {
  display: none;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_search .select2-selection {
  height: 36px;
  padding: 3px;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_radius {
  margin: 0;
  width: 50%;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_radius label {
  display: none;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_radius input {
  height: 33px;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_unit {
  margin: 0;
  width: 50%;
  padding-right: 0;
}

.card .target_map .target_map_data .targeting-location-place-con .controls .place_unit select {
  width: 100%;
  height: 35px;
  background: #fff;
  border: 1px solid #dfdfdf;
}

.card .target_map .target_map_data .action_wrap {
  text-align: center;
  display: none;
}

.card .target_map .target_map_data .action_wrap a {
  width: 100%;
  border-radius: 4px;
  background-color: #F4F9FF;
  font-weight: 500;
  letter-spacing: -0.51px;
  box-shadow: none !important;
  height: 46px;
  font-size: 17px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .target_map .target_map_data .action_wrap a i {
  margin-right: 3px;
  margin-top: 1px;
}

.card .target_map .targeting_map_wrap {
  width: 100%;
  padding: 0;
  float: unset;
}

.card .target_map.bulk_enabled .target_map_data .targeting-location-table-con {
  margin-top: 12px;
  height: calc(100% - 25px);
}

.new-campaign-page #configurate blockquote {
  border-left: 3px solid #244ff2 !important;
  padding-left: 12px;
  margin: 10px 0;
  margin-bottom: 20px;
  color: #5C5B5B;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 19px;
  margin-top: 10px;
  margin-bottom: 14px;
  border-radius: 1px;
}

.new-campaign-page #configurate blockquote.basic {
  border: none !important;
  padding-left: 0;
}

.new-campaign-page #configurate .radio div label:before {
  height: 16px !important;
  width: 16px !important;
}

.new-campaign-page #configurate .radio div [type="radio"] + label:before, .new-campaign-page #configurate .radio div [type="radio"] + label:after {
  left: 0;
  top: 43% !important;
  transform: translateY(-50%) !important;
}

.new-campaign-page #configurate .radio label {
  left: 0 !important;
}

.new-campaign-page #configurate .card-style {
  margin-left: 0;
  margin-right: 0;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 14px 18px;
  padding-bottom: 18px;
  margin-bottom: 13px;
  border: 1px solid #eaeaea;
  box-shadow: none;
}

.new-campaign-page #configurate .card-style .estimateViewsAndSubscribersContainer {
  margin: 0;
  padding: 0;
  text-align: center;
}

.new-campaign-page #configurate .card-style .estimateViewsAndSubscribersContainer .top_p {
  color: #575757;
  font-size: 15px;
  letter-spacing: -0.19px;
  line-height: 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 7px;
  font-weight: 400;
  margin-right: 3px;
}

.new-campaign-page #configurate .card-style .estimateViewsAndSubscribersContainer .bottom_p div {
  color: #2B2B2B;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.14px;
  line-height: 23px;
  text-align: center;
  margin-bottom: 6px;
  margin-bottom: 0;
}

.new-campaign-page #configurate .card-style .card-body {
  padding: 0;
}

.new-campaign-page #configurate .card-style .card-body #table_placements thead {
  display: none;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr {
  width: 100%;
  display: flex;
  align-items: start;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fdfdfd;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(1) {
  padding: 0;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(1) img {
  display: block;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(2) {
  padding-bottom: 0;
  padding-top: 17px;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(2) a {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(2) .statistics {
  color: #607D8B;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(2) .statistics span {
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #dadada;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 405;
  color: #282828;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(2) .statistics span b {
  font-weight: 300;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(3) {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 14px;
  padding: 3.2px 12px;
  border: 1px solid #e1e1e1;
  border-top: 0;
  letter-spacing: -0.3px;
  border-right: 0;
  border-radius: 0 0 0 6px;
  padding-right: 16px;
  z-index: 0;
  background: #f9f9f9;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(4) {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  width: 20px;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(4) button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 3px;
  background-color: #e00010;
  border-radius: 0 3px 0 7px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 28px;
  width: 25px;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(4) button i {
  color: #ffffffc2 !important;
  height: 15px;
  line-height: 17px;
  margin: 0;
  width: 23px;
  padding-bottom: 10px;
  font-size: 17px;
}

.new-campaign-page #configurate .card-style .card-body #table_placements tbody tr td:nth-child(4) button:hover i {
  color: #ffffff !important;
}

.new-campaign-page #configurate .card-style .card-body #myOwnAdwordSection .input-field {
  margin-bottom: 15px;
}

.new-campaign-page #configurate .card-style .card-body .campaignKeywordsLabel_wrapper {
  border: 0.54px solid #e6e6e6;
  border-radius: 4px;
  width: 100%;
  padding: 10px 14px !important;
  background-color: #FCFCFC;
  color: #424242;
  margin: 10px 0;
  margin-top: 0;
}

.new-campaign-page #configurate .card-style .card-body #campaignKeywords {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}

.new-campaign-page #configurate .card-style .card-body #campaignKeywords .chip {
  padding-right: 6px;
}

.new-campaign-page #configurate .card-style .card-body #campaignKeywords .chip .close {
  line-height: 18px;
}

.new-campaign-page #configurate .card-style .card-body #campaignKeywordsDesc {
  display: none;
}

.new-campaign-page #configurate .card-style .card-body #local_business_place_preview .card {
  box-shadow: none;
  border-style: solid;
  border-color: #e5e7eb;
  margin: 0;
}

.new-campaign-page #configurate .card-style .card-body #local_business_place_preview .card .card-image img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.new-campaign-page #configurate .card-style .card-body #local_business_place_preview .card .card-content {
  padding: 12px;
}

.new-campaign-page #configurate .card-style .card-body #container_promote_video_url_source_type {
  margin-top: 10px;
}

.new-campaign-page #configurate .card-style .card-body .select2-container {
  min-width: 10em !important;
}

.new-campaign-page #configurate .card-style .card-body .select2-container .select2-selection--single {
  height: 46px;
  padding: 7px 8px;
  font-weight: 400;
  font-size: 16px;
}

.new-campaign-page #configurate .card-style .card-body .f-buttons {
  text-align: center;
  display: flex;
  align-items: start;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 5px;
}

.new-campaign-page #configurate .card-style .card-body .f-buttons .btn-select {
  width: 100%;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FDFDFD;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
  color: #070707;
  padding: 10px;
  padding-bottom: 11px;
  display: block;
  margin: 0;
}

.new-campaign-page #configurate .card-style .card-body .f-buttons .btn-select.active {
  background-color: #4169e1;
  color: white;
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  background-color: #F4F9FF;
  width: 100%;
  color: #2979E6;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  margin: 0;
}

.new-campaign-page #configurate .card-style .card-body h5 {
  color: #494949;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 22px;
  margin: 0;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 12px;
}

.new-campaign-page #configurate .card-style .card-body .col.s12 {
  padding: 0;
}

.new-campaign-page #configurate .card-style .card-body #targetingLanguagesSelected {
  margin-top: 9px;
  gap: 0px 2px;
  display: flex;
  flex-wrap: wrap;
}

.new-campaign-page #configurate .card-style .card-body .input-field {
  padding: 0;
  width: 100%;
}

.new-campaign-page #configurate .card-style .card-body .input-field input {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  width: -webkit-fill-available;
  padding: 14px 20px;
  background-color: #FCFCFC;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 20px;
  margin: 0;
  height: auto;
}

.new-campaign-page #configurate .card-style .card-body select {
  width: 100%;
  padding: 10px;
  padding-left: 17px;
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FCFCFC;
  padding-right: 19px;
  height: 49px;
}

.new-campaign-page #configurate .card-style .card-body .input-field label:not(.label-icon).active, .new-campaign-page #configurate .card-style .card-body .input-field label:not(.label-icon) {
  top: -11px;
  left: 20px;
  color: #6b6b6b;
  font-weight: 400;
  transform: unset;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}

.new-campaign-page #configurate .card-style .card-body .input-field label:not(.label-icon).active:before, .new-campaign-page #configurate .card-style .card-body .input-field label:not(.label-icon):before {
  content: "";
  height: 3px;
  width: 100%;
  background: #fcfcfc;
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  z-index: -1;
}

.new-campaign-page #configurate .card-style.lifetime-budget #increase_budget_btn {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 10px;
  color: #002eb2;
  font-weight: 500;
}

.new-campaign-page #configurate .card-style#increase_budget_container .increase_ytBudgetCounter {
  text-align: left !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column;
  align-items: start !important;
  border-radius: 8px !important;
}

.new-campaign-page #configurate #deliverySpeedSection #showScheduleDatepickerContainer {
  display: none !important;
}

.new-campaign-page #configurate .card-style .deliverySpeed ul {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 7px;
  grid-template-areas: ". ." ". .";
}

.new-campaign-page #configurate .card-style .deliverySpeed ul li {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #FDFDFD;
  width: 100%;
  color: #070707;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  text-align: center;
  height: 100%;
}

.new-campaign-page #configurate .card-style .deliverySpeed ul li [type="radio"] + label:after, .new-campaign-page #configurate .card-style .deliverySpeed ul li [type="radio"]:not(:checked) + label:before {
  content: unset !important;
}

.new-campaign-page #configurate .card-style .deliverySpeed ul li label {
  font-size: 15px;
  width: 100%;
  padding: 12px;
  line-height: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-campaign-page #configurate .card-style .deliverySpeed ul li:has(input[type="radio"]:checked) {
  border: 0.54px solid #2677E5;
  border-radius: 4px;
  background-color: #F4F9FF;
  color: #2979E6;
  font-weight: 500;
}

.new-campaign-page #configurate .card-style .deliverySpeed ul li:has(input[type="radio"]:checked) label {
  color: #2979E6;
  font-weight: 500;
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12 {
  padding: 0;
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12 .row {
  margin: 0;
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12 .row .col {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas: ". . . .";
  padding: 0;
  gap: 7px;
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12 .row .col .btn-budget {
  margin: 0;
  border: 0.54px solid #B8B8B8;
  border-radius: 3.68px;
  background-color: #FDFDFD;
  padding: 11px;
  color: #292929;
  font-size: 21.15px;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
  justify-content: center;
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12 .row .col .btn-budget.active {
  border: 1px solid #6E94FF;
  border-radius: 3.68px;
  background-color: #F3F6FF;
  box-shadow: 0 1px 4px 0 rgba(230, 230, 230, 0.5);
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12 .input-field {
  width: 100%;
  left: 0;
  padding: 0;
  margin: 0;
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12 .input-field input {
  margin: 0;
  padding-left: 15px;
  font-size: 17px;
  margin-bottom: 10px;
}

.new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper {
  display: flex;
  position: relative;
  width: 100%;
  margin-left: auto;
  left: auto;
  right: auto;
  align-items: start;
}

.new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalType {
  margin-bottom: 20px;
  padding: 0;
  float: unset;
  display: flex;
  width: 200px;
  margin-right: 10px;
}

.new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalType .btn-select {
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  background-color: #f8f8f8 !important;
  margin: 0;
  margin-right: 7px;
  letter-spacing: -0.51px;
}

.new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalType .btn-select.active {
  width: 100%;
  background-color: #F4F9FF !important;
  font-weight: 500;
  box-shadow: none !important;
  text-transform: capitalize;
  border: 1px solid #2677E5;
  color: #2979E6;
}

.new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalInput {
  padding: 0;
  float: unset;
  display: block;
  position: relative;
}

.new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalInput #budgetGoalValue {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  width: -webkit-fill-available;
  padding: 14px 20px;
  background-color: #FCFCFC;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 20px;
  margin: 0;
  height: auto;
}

.new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalInput #budgetGoalSuffix {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12.estimate {
  display: flex;
  align-items: center;
  justify-content: start;
  background: #f8fafc;
  border: 1px solid #dfe2eb;
  border-radius: 8px;
}

.new-campaign-page #configurate .lifetime-budget .col.s12.m12.estimate .estimate-values-container {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px 16px;
  text-align: left;
  padding: 0px 10px;
}

.new-campaign-page #configurate #configure {
  display: block;
}

.new-campaign-page #configurate .form_header {
  margin: 0;
}

.new-campaign-page #configurate .form_header #configurationTabs .tab, .new-campaign-page #configurate .form_header .configurationTabs .tab, .new-campaign-page #configurate .form_header #ad_preview_tabs .tab {
  background: unset;
}

.new-campaign-page #configurate .form_header .row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 10px;
}

.new-campaign-page #configurate .form_header .row h1 {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.12px;
  line-height: 42px;
  margin: 0;
}

.new-campaign-page #configurate .form_header .row .tabs {
  display: flex;
  gap: 0;
  position: relative;
  height: unset;
  background: unset;
  border: unset;
  overflow: auto;
  white-space: unset;
  border-radius: 0px !important;
  overflow: visible;
  width: unset;
  margin: 0;
}

.new-campaign-page #configurate .form_header .row .tabs .indicator {
  display: none;
}

.new-campaign-page #configurate .form_header .row .tabs .tab {
  position: relative;
  margin: 0;
  left: 0;
  top: 0;
  line-height: 44px;
  overflow: visible;
}

.new-campaign-page #configurate .form_header .row .tabs .tab svg g {
  fill: #244FF2;
  stroke: #244FF2;
}

.new-campaign-page #configurate .form_header .row .tabs .tab a {
  position: relative;
  z-index: 4;
  background: unset;
  color: #fff !important;
  border: unset;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-transform: capitalize;
  height: unset;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  text-align: center;
}

.new-campaign-page #configurate .form_header .row .tabs .tab svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: visible;
}

.new-campaign-page #configurate .form_header .row .tabs .step-2-1-nav {
  height: 42px;
  width: 101px;
  margin-right: -6px;
  position: relative;
}

.new-campaign-page #configurate .form_header .row .tabs .step-2-2-nav {
  height: 42px;
  width: 114px;
  margin-right: -7px;
}

.new-campaign-page #configurate .form_header .row .tabs .step-2-2-nav a {
  left: 49%;
}

.new-campaign-page #configurate .form_header .row .tabs .step-2-3-nav {
  height: 42px;
  width: 101px;
}

.new-campaign-page #configurate .form_header .row .tabs .step-2-3-nav a {
  left: 51%;
}

.new-campaign-page #configurate .form_header .row .tabs .tab.inactive {
  color: #737373;
}

.new-campaign-page #configurate .form_header .row .tabs .tab.inactive svg g {
  fill: #fff;
  stroke: #e3e3e3;
}

.new-campaign-page #configurate .form_header .row .tabs .tab.inactive a {
  color: #000 !important;
}

.new-campaign-page #configurate .form_header .row:after {
  content: none;
}

/*****
Switch Main
*****/
.switch_main {
  cursor: pointer;
}

.switch_main .switch {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
}

.switch_main .switch .option {
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.45px;
  line-height: 17px;
  text-align: right;
  padding: 7px 15px 8px;
  z-index: 9;
}

.switch_main .switch .option_selected {
  color: #fff;
}

.switch_main .switch:not(.disabled) .selection {
  position: absolute;
  border-radius: 30px;
  height: 85%;
  width: 45%;
  left: 3px;
  background: #0042ff;
  transition: left .3s ease, width .3s ease;
}

.switch_main .switch.disabled .option_selected {
  background: #0042ff;
  border-radius: 30px;
  color: #fff;
}

/*****
Reports Sections
*****/
.reports .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.reports .top .side:nth-child(1) {
  display: flex;
  gap: 20px;
  align-items: center;
}

.reports .top .side:nth-child(1) h1 {
  color: #000000;
  font-size: 37.85px;
  font-weight: 600;
  letter-spacing: -1.21px;
  line-height: 46px;
  margin-bottom: 5px;
  margin: 0;
}

.reports .top .side:nth-child(1) .view_selector {
  width: 200px;
  position: relative;
}

.reports .top .side:nth-child(1) .view_selector .name {
  color: #6C6C6C;
  font-family: "Founders Grotesk";
  font-size: 14px;
  letter-spacing: -0.45px;
  line-height: 17px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  z-index: 4;
  left: 40px;
  margin: 0;
}

.reports .top .side:nth-child(1) .view_selector .name:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 120%;
  transform: translateX(-50%);
  left: 50%;
  z-index: -11;
  top: 52%;
  background: #fbfdff;
}

.reports .top .side:nth-child(2) {
  display: flex;
  gap: 12px;
  align-items: center;
}

.reports .top .side:nth-child(2) .data_range_wrapper {
  width: 220px;
  position: relative;
}

.reports .top .side:nth-child(2) .data_range_wrapper .name {
  color: #6C6C6C;
  font-family: "Founders Grotesk";
  font-size: 14px;
  letter-spacing: -0.45px;
  line-height: 17px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  z-index: 4;
  left: 13px;
  margin: 0;
}

.reports .top .side:nth-child(2) .data_range_wrapper .name:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 120%;
  transform: translateX(-50%);
  left: 50%;
  z-index: -11;
  top: 50%;
  background: #fbfdff;
}

.reports .top .side:nth-child(2) .data_range_wrapper input {
  padding: 9px 15px;
  padding-left: 12px;
  color: #292929;
  font-family: "Founders Grotesk";
  font-size: 15.14px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 19px;
  border-radius: 4px;
  background-color: #FBFDFF;
  border: 1px solid #CCD2D7;
  width: 100%;
  cursor: pointer;
  height: unset;
  margin: 0;
  width: -webkit-fill-available;
}

.reports .top .side:nth-child(2) .data_range_wrapper .icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.reports .top .side:nth-child(2) .admin_button {
  border-radius: 3px;
  background-color: #0042FF;
  border: none;
  padding: 9px 15px;
  padding-bottom: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
  display: flex;
  align-items: center;
}

.reports .top .side:nth-child(2) .reports_admin_button {
  display: none;
}

.reports .top .side:nth-child(2) .reports_admin_button.show {
  display: block;
}

.reports .top .side:nth-child(2) .status_choice_wrapper {
  width: 170px;
  position: relative;
}

.reports .top .side:nth-child(2) .status_choice_wrapper .name {
  color: #6C6C6C;
  font-family: "Founders Grotesk";
  font-size: 14px;
  letter-spacing: -0.45px;
  line-height: 17px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  z-index: 4;
  left: 13px;
  margin: 0;
}

.reports .top .side:nth-child(2) .status_choice_wrapper .name:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 140%;
  transform: translateX(-50%);
  left: 50%;
  z-index: -11;
  top: 50%;
  background: #fbfdff;
}

.reports .top .side:nth-child(2) .status_choice_wrapper .choices__list--single {
  padding: 9px 15px;
  padding-left: 12px;
}

.reports .top .side:nth-child(2) .status_choice_wrapper .choices__item {
  color: #292929;
  font-family: "Founders Grotesk";
  font-size: 15.14px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 19px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.reports .top .side:nth-child(2) .status_choice_wrapper .choices__list--dropdown .choices__item {
  padding: 8px 16px 8px 12px !important;
}

.reports .top .side:nth-child(2) .new {
  border-radius: 3px;
  background-color: #0042FF;
  border: none;
  padding: 9px 15px;
  padding-bottom: 10px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
  display: flex;
  align-items: center;
}

.reports .top .side:nth-child(2) .new img {
  margin-left: 7px;
}

.reports .top .choices__inner {
  padding: 0 !important;
  min-height: unset;
  border: unset;
  overflow: visible;
}

.reports .top .choices__item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.reports .top .choices__item div {
  color: #292929;
  font-size: 15.14px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 19px;
}

.reports .top .choices.is-focused {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.reports .top .choices.is-focused .choices__list--single {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.reports .top .choices__list {
  border-radius: 4px;
  background-color: #FBFDFF;
  border: 1px solid #CCD2D7;
  border-color: #CCD2D7 !important;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.reports .top .choices__list div {
  border: unset;
}

.reports .top .choices__list--single {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.reports .top .choices__list--dropdown .choices__item--selectable.is-highlighted::after, .reports .top .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  display: none !important;
}

.reports .top .choices__list--dropdown .choices__item--selectable, .reports .top .choices__list[aria-expanded] .choices__item--selectable {
  padding-right: 0 !important;
}

.reports .top .choices__list--dropdown .choices__item, .reports .top .choices__list[aria-expanded] .choices__item {
  padding: 4px 16px 4px 4px !important;
}

.reports .content {
  overflow: scroll;
}

.reports .content table {
  width: 100%;
  margin-top: 7px;
  border-spacing: 0;
  /* Removes the space between table cells */
  border-collapse: separate;
  /* Ensures that cells can have individual borders */
}

.reports .content table .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
  display: block;
}

.reports .content table thead th {
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
  text-align: left;
  padding-bottom: 5px;
}

.reports .content table thead .earned {
  color: #6C8C5E;
  text-align: center;
}

.reports .content table thead .views, .reports .content table thead .views, .reports .content table thead .count, .reports .content table thead .subs, .reports .content table thead .likes, .reports .content table thead .comments {
  text-align: center;
}

.reports .content table tbody {
  position: relative;
}

.reports .content table tbody td {
  padding: 6px 16px;
  padding-left: 0;
  border-top: 1px solid #DEDEDE;
  /* Top border for all cells */
  color: #484848;
  font-size: 16px;
  letter-spacing: -0.17px;
  line-height: 19px;
  background: #fff;
}

.reports .content table tbody td:first-child {
  padding-left: 16px;
  color: #262626;
  font-size: 16px;
  letter-spacing: -0.51px;
  line-height: 19px;
}

.reports .content table tbody tr:first-child th {
  border-top: none;
  /* Removes the top border for the first row of header cells */
}

.reports .content table tbody th, .reports .content table tbody tr td:first-child {
  border-left: 1px solid #DEDEDE;
  /* Left border for header and first column cells */
}

.reports .content table tbody th:last-child, .reports .content table tbody td:last-child {
  border-right: 1px solid #DEDEDE;
  /* Right border for the last header and column cells */
}

.reports .content table tbody tr:last-child td {
  border-bottom: 1px solid #DEDEDE;
  /* Bottom border for the last row cells */
}

.reports .content table tbody tr:nth-last-child(2) td {
  border-bottom: 1px solid #DEDEDE;
}

.reports .content table tbody tr:first-child td:first-child {
  border-top-left-radius: 4px;
  /* Top-left border-radius for the first header */
}

.reports .content table tbody tr:first-child td:last-child {
  border-top-right-radius: 4px;
  /* Top-right border-radius for the last header */
}

.reports .content table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
  /* Bottom-left border-radius for the first cell in the last row */
}

.reports .content table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
  /* Bottom-right border-radius for the last cell in the last row */
}

.reports .content table tbody tr td:last-child {
  border-left: 1px solid #D9D9D9;
  border-radius: 0 4px 0 0;
  background-color: #F9F9F9;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 6px;
  padding-right: 7px;
}

.reports .content table tbody tr td:last-child img {
  margin: 0 auto;
}

.reports .content table tbody a {
  text-decoration: underline;
}

.reports .content table tbody tr.dummy {
  width: 100%;
  opacity: 0;
  height: 52px;
  display: none;
}

.reports .content table tbody tr.dummy.active {
  display: table-row;
}

.reports .content table tbody td:last-child {
  cursor: pointer;
}

.reports .content table tbody td:last-child .selected {
  display: none;
}

.reports .content table tbody .more {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #DEDEDE;
  border-radius: 0 0 4px 4px;
  background-color: #FCFCFC;
  padding: 11px 15px;
  padding-bottom: 12px;
  display: none;
}

.reports .content table tbody .more .more_side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reports .content table tbody .more .more_side .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reports .content table tbody .more .more_side .item p:nth-child(1) {
  color: #6C6C6C;
  font-family: "Founders Grotesk";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.41px;
  line-height: 16px;
  text-align: right;
  margin: 0;
}

.reports .content table tbody .more .more_side .item p:nth-child(2) {
  color: #484848;
  font-family: "Founders Grotesk";
  font-size: 15px;
  letter-spacing: -0.16px;
  line-height: 18px;
  margin: 0;
}

.reports .content table tbody tr.active {
  display: table-row;
}

.reports .content table tbody tr.active td:last-child {
  border-radius: 0 4px 0 0;
  background-color: #0044FF;
}

.reports .content table tbody tr.active td:last-child .selected {
  display: block;
}

.reports .content table tbody tr.active td:last-child .normal {
  display: none;
}

.reports .content table tbody tr.active .more {
  display: flex;
}

.reports .content table tbody .views, .reports .content table tbody .count, .reports .content table tbody .subs, .reports .content table tbody .likes, .reports .content table tbody .comments, .reports .content table tbody .earned, .reports .content table tbody .right-align, .reports .content table tbody .normal {
  padding-right: 10px;
  padding-left: 8px;
  text-align: center;
}

.reports .content table tbody .views div, .reports .content table tbody .count div, .reports .content table tbody .subs div, .reports .content table tbody .likes div, .reports .content table tbody .comments div, .reports .content table tbody .earned div, .reports .content table tbody .right-align div, .reports .content table tbody .normal div {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.reports .content table tbody .views i, .reports .content table tbody .count i, .reports .content table tbody .subs i, .reports .content table tbody .likes i, .reports .content table tbody .comments i, .reports .content table tbody .earned i, .reports .content table tbody .right-align i, .reports .content table tbody .normal i {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.reports .content table tbody .earned {
  color: #1C5D00;
  font-weight: 500;
}

.reports .content table tbody .earned div {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.reports .content table tbody .status_choice_wrapper {
  width: 200px;
}

.reports .content table tbody .status_choice_wrapper .choices .choices__list--dropdown .choices__item--selectable {
  padding: 6px;
}

.reports .content table tbody .status_choice_wrapper .choices .choices__list--dropdown .choices__item--selectable .fund_wrapper {
  color: #FFFFFF;
  font-family: "Founders Grotesk";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
  border-radius: 2px;
  background-color: #0042FF;
  padding: 9px 12px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reports .content table tbody .status_choice_wrapper .choices .choices__list--dropdown .choices__item--selectable::after {
  content: '';
  opacity: 0;
}

.reports .content table tbody .status_choice_wrapper .choices .choices__inner {
  padding: 5px 6px;
  height: unset;
  min-height: unset;
}

.reports .content table tbody .status_choice_wrapper .choices .choices__inner .choices__list--single .choices__item {
  color: #40403E;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.17px;
  line-height: 19px;
  display: flex;
  gap: 7px;
}

.reports .content table tbody .status_choice_wrapper .choices .choices__list .is-selected {
  display: none !important;
}

.reports .content table tbody .status_simple_choice_wrapper .choices .choices__list--dropdown .choices__item--selectable {
  display: flex;
  gap: 7px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  background-color: #F7F7F7;
  width: 100%;
  padding: 8px 10px;
  color: #40403E;
  font-family: "Founders Grotesk";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 17px;
  display: flex;
  justify-content: space-between;
}

.reports .content table tbody .status_simple_choice_wrapper .choices .choices__list--dropdown .choices__list {
  padding: 5px;
  background: #fff;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}

.reports .content table tbody .status_inactive_choice_wrapper .choices .choices__list--dropdown .choices__item:last-child {
  background-color: #C04D4D;
  color: rgba(255, 255, 255, 0.82);
}

.reports .content table td.highlight {
  background: #FBFBFB;
}

.reports .content table td.main-highlight {
  background: #F3F3F3;
}

.reports .content table {
  display: none;
}

.reports .content table.show {
  display: table;
}

.reports .content #advanced_view {
  min-width: 2300px;
}

.reports .content #advanced_view .reports .content table tbody tr:first-child td:last-child {
  background: #fff;
  border-left: unset;
}

.reports .content #advanced_view tbody .status_choice_wrapper {
  width: unset;
}

.reports .content #advanced_view tbody tr td:last-child {
  background: #fff;
  border-left: unset;
}

.reports .content .status_choice_wrapper {
  pointer-events: none;
}

.reports .content .choices[data-type*=select-one]::after {
  display: none !important;
}

.engagement .dropdown-content-secondary {
  box-shadow: 0 1px 7px 0 rgba(114, 114, 114, 0.5);
  border-radius: 3px;
  display: none;
  background: #fff;
  z-index: 9;
}

.engagement .dropdown-content-secondary .filterHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px !important;
  padding-right: 8px !important;
  background: #424857 !important;
  color: #fff;
}

.engagement .dropdown-content-secondary .filterHeader .close-dd {
  display: flex;
  align-items: center;
}

.engagement .dropdown-content-secondary #filterOperator {
  width: 100%;
  padding: 8px;
  padding-left: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  background-color: #F7F7F7;
  color: #000;
}

.engagement .dropdown-content-secondary #filterValue {
  width: 100%;
  width: -webkit-fill-available;
  padding: 8px;
  padding-left: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  background-color: #F7F7F7;
  color: #000;
  margin-bottom: 5px;
}

.engagement .dropdown-content-secondary .btn-filter-apply {
  background: #0042FF;
  padding: 3px 11px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 27px;
  text-align: center;
  border-radius: 2px;
  margin-top: 0;
  width: 100%;
  display: block;
}

.engagement .top .side:nth-child(1) .switch {
  background: #fff;
}

.engagement .top .side:nth-child(2) {
  gap: 8px;
}

.engagement .top .side:nth-child(2) .status_choice_wrapper {
  width: 210px;
}

.engagement .top .side:nth-child(2) .core_button {
  border-radius: 3px;
  background-color: #0042FF;
  border: none;
  padding: 9px 15px;
  padding-bottom: 10px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
  display: flex;
  align-items: center;
}

.engagement .top .side:nth-child(2) .core_button img {
  margin-left: 7px;
  margin-top: 1px;
}

.engagement .top .side:nth-child(2) .basic_button {
  border-radius: 3px;
  border: 1.08px solid #CDCDCD;
  background-color: #FFFFFF;
  border: none;
  padding: 9px 15px;
  padding-bottom: 10px;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  border: 1.08px solid #CDCDCD;
}

.engagement .top .side:nth-child(2) .basic_button img {
  margin-left: 6px;
  height: 11px;
  width: 11px;
}

.engagement .top .side:nth-child(2) .core_button {
  position: relative;
  cursor: pointer;
}

.engagement .top .side:nth-child(2) .filter_menu {
  position: absolute;
  right: 0;
  width: 245px;
  text-align: left;
  top: 120%;
  z-index: 4;
  box-shadow: 0 1px 7px 0 rgba(114, 114, 114, 0.5);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  display: none;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_arrow {
  position: absolute;
  z-index: 4;
  top: -8px;
  right: 15px;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul {
  background: #FFFFFF;
  margin: 0;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul .disabled {
  pointer-events: none;
  color: #727272;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul a {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul a i {
  font-size: 20px;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li:first-child {
  background: #424857;
  color: #fff;
  padding: 6px;
  padding-left: 15px;
  border-radius: 2px 2px 0 0;
  font-weight: 500;
  font-size: 14px;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li {
  color: #000;
  font-size: 15px;
  padding: 7px 10px;
  padding-left: 15px;
  font-weight: 500;
  border-bottom: 1px solid #E8E6E6;
  display: flex;
  align-items: center;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li img {
  margin-left: 0;
  margin-right: 7px;
  width: 11px;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li.enabled {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li.enabled img {
  display: none;
  margin-right: 0;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li.enabled:hover {
  background: #F0F3FA;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li.enabled:hover img {
  display: block;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li.locked {
  color: #4C4C4C;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper ul li:last-child {
  border-bottom: unset;
  padding-bottom: 8px;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper.sub_menu_enabled li {
  display: none;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper.sub_menu_enabled li.enabled {
  display: none;
}

.engagement .top .side:nth-child(2) .filter_menu .filter_menu_wrapper.sub_menu_enabled li:first-child {
  display: block;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu {
  display: none;
  background: #fff;
  color: #000;
  width: 100%;
  top: 30px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu .menu_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background-color: #F2F2F2;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu .menu_name p {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 19px;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu .menu_content {
  padding: 8px 11px;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu .menu_content .options select {
  width: 100%;
  padding: 8px;
  padding-left: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  background-color: #F7F7F7;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu .menu_content .confirmation {
  position: relative;
  padding-top: 5px;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu .menu_content .confirmation input[type=number] {
  border: 0.54px solid #B8B8B8;
  border-radius: 2px;
  width: 100%;
  padding: 7px 13px;
  background-color: #FCFCFC;
  color: #424242;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 20px;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu .menu_content .confirmation input[type=submit] {
  background: #0042FF;
  padding: 3px 11px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  text-align: center;
  border-radius: 2px;
  margin-top: 0;
  position: absolute;
  right: 5px;
  top: 10px;
}

.engagement .top .side:nth-child(2) .filter_menu .sub_menu.active {
  display: block;
}

.engagement .top .side:nth-child(2) .filter_menu.active {
  display: block;
}

.engagement .active_filters {
  align-items: center;
  gap: 10px;
}

.engagement .active_filters .name {
  color: #535353;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 18px;
  margin-bottom: 2px;
}

.engagement .active_filters .list {
  display: flex;
  align-items: center;
  margin-top: 5px;
  flex-wrap: wrap;
}

.engagement .active_filters .list .filter {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 12px;
  padding-top: 5px;
  padding-right: 6px;
  padding-left: 15px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  background-color: #F9F9F9;
  font-size: 15px;
}

.engagement .active_filters .list .filter i {
  font-size: 20px;
  padding-right: 4px;
  padding-top: 1px;
}

.engagement .active_filters .list .filter p {
  color: #535353;
  font-family: "Founders Grotesk";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
}

.engagement .active_filters .list .filter img {
  cursor: pointer;
}

.engagement .active_filters .list .filter .normal {
  display: block;
}

.engagement .active_filters .list .filter .show {
  display: none;
}

.engagement .active_filters .list .filter div:hover .normal {
  display: none;
}

.engagement .active_filters .list .filter div:hover .show {
  display: block;
}

.engagement .active_filters.active {
  display: flex;
}

.engagement .notification_learn_groups {
  display: none;
}

.engagement .notification_learn_groups p {
  padding: 15px 19px;
  border-radius: 3px;
  font-size: 14px;
  background: #fffdfb;
  border: 1px solid #dfbca9;
  margin-top: 7px;
  font-weight: 400;
  letter-spacing: 0.05px;
  color: #3e2c21;
  margin-bottom: 1px;
}

.engagement .notification_learn_groups p b {
  font-weight: 500;
}

.engagement .notification_learn_groups.show {
  display: block;
}

.engagement .content {
  overflow: scroll;
}

.engagement .content table.table_overview tr:nth-last-child(1) td:first-child {
  color: #484848;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.35px;
  line-height: 19px;
}

.engagement .content table.table_overview tr:nth-last-child(1) td {
  background-color: #FCFCFC;
  border-top: 1px solid #0042FF;
  border-bottom: 1px solid #0042FF !important;
  color: #0042FF;
}

.engagement .content table.table_overview tr:nth-last-child(1) td:first-child {
  border-left: 1px solid #0042FF;
}

.engagement .content table.table_overview tr:nth-last-child(1) td:last-child {
  border-right: 1px solid #0042FF;
}

.engagement .content table.table_overview tr:nth-last-child(2) td:first-child {
  color: #484848;
  font-family: "Founders Grotesk";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.35px;
  line-height: 19px;
}

.engagement .content table.table_overview tr:nth-last-child(2) td {
  background-color: #FCFCFC;
}

.engagement .content table.table_overview tr:nth-last-child(3) td:first-child {
  color: #484848;
  font-family: "Founders Grotesk";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.35px;
  line-height: 19px;
}

.engagement .content table.table_overview tr:nth-last-child(3) td {
  background-color: #FCFCFC;
}

.engagement .content table.table_overview tr:nth-last-child(3) td {
  border-top: 1px solid #C2C2C2;
}

.engagement .content table.table_overview td.highlight {
  background: #FBFBFB !important;
}

.engagement .content table.table_overview td.main-highlight {
  background: #F3F3F3 !important;
}

.engagement .content table.table_overview tr:nth-last-child(3) td.main-highlight,
.engagement .content table.table_overview tr:nth-last-child(2) td.main-highlight,
.engagement .content table.table_overview tr:nth-last-child(1) td.main-highlight {
  background: #f5f5f5 !important;
}

.engagement .content table.table_overview tr:nth-last-child(3) td.highlight,
.engagement .content table.table_overview tr:nth-last-child(2) td.highlight,
.engagement .content table.table_overview tr:nth-last-child(1) td.highlight {
  background: #f3f3f3 !important;
}

.engagement .content .table_overview .no-results td, .engagement .content .table_overview .no-results {
  padding: 15px;
  text-align: left;
}

.engagement .content table {
  min-width: 1850px;
  display: none;
  width: 100%;
}

.engagement .content table thead, .engagement .content table tbody {
  width: 100%;
}

.engagement .content table tr th {
  text-align: center;
}

.engagement .content table tr th:first-child {
  text-align: left;
}

.engagement .content table tr td:first-child {
  min-width: 200px;
}

.engagement .content table tr td {
  padding-right: 0;
  text-align: center;
  padding-top: 11px;
  padding-bottom: 11px;
  color: #484848;
  font-family: "Founders Grotesk";
  font-size: 16px;
  letter-spacing: -0.17px;
  line-height: 19px;
  font-weight: 300;
}

.engagement .content table tr td div {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.engagement .content table tr td:first-child {
  padding-left: 14px;
  text-align: left;
  color: #181818;
}

.engagement .content .table_overview td:first-child {
  min-width: 140px;
}

.engagement .content table.selected {
  display: table;
}

.engagement .content table.table_ad_groups {
  min-width: unset;
}

.engagement .content tr {
  width: 100%;
}

.engagement .content thead {
  background-color: #FBFBFB;
}

.engagement .content thead th:last-child {
  border-right: 1px solid #DEDEDE;
  /* Right border for the last header and column cells */
}

.engagement .content thead tr {
  background-color: #FBFBFB;
}

.engagement .content thead th:first-child {
  border-left: 1px solid #DEDEDE;
}

.engagement .content thead th:last-child {
  border-right: 1px solid #DEDEDE;
}

.engagement .content thead th {
  padding: 7px 13px;
  border-top: 1px solid #DEDEDE;
  /* Bottom border for the last row cells */
  background-color: #FBFBFB;
}

.engagement .content thead tr:first-child th:first-child {
  border-top-left-radius: 4px;
  /* Top-left border-radius for the first header */
}

.engagement .content thead tr:first-child th:last-child {
  border-top-right-radius: 4px;
  /* Top-right border-radius for the last header */
}

.engagement .content thead tr:last-child th:first-child {
  border-bottom-left-radius: 4px;
  /* Bottom-left border-radius for the first cell in the last row */
}

.engagement .content thead tr:last-child th:last-child {
  border-bottom-right-radius: 4px;
  /* Bottom-right border-radius for the last cell in the last row */
}

.general-settings-page .container {
  z-index: unset;
}

.general-settings-page .modal {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fafafa;
  padding: 0;
  max-height: 80%;
  width: 55%;
  height: auto;
  margin: auto;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top, opacity;
}

.general-settings-page .modal .modal-content {
  width: unset;
  max-width: unset;
  margin-top: unset;
}

.general-settings-page .modal .modal-content .modal-close {
  float: right;
  position: absolute;
  right: 15px;
  top: 20px;
}

.general-settings-page .modal .modal-content .row {
  padding: 0 22px;
  margin: 0;
  margin-top: 14px;
}

.general-settings-page .modal .modal-content .row#search_progress_channel {
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.general-settings-page .modal .modal-content .row#search_progress_channel .col {
  margin: 0;
}

.general-settings-page .modal .modal-content .row#search_progress_channel .col .progress {
  width: 100%;
}

.general-settings-page .modal .modal-content input {
  border: 0.54px solid #DBDBDB;
  border-radius: 7px;
  background-color: #FCFCFC;
  width: 100%;
  padding: 10px 16px;
  width: -webkit-fill-available;
  height: unset;
}

.general-settings-page .modal .modal-content label {
  font-size: 15px;
  margin-bottom: 3px;
  color: #3f3f3f;
}

.general-settings-page .modal .modal-content .input-field.left-align {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 13px;
  margin: 0;
}

.general-settings-page .modal .modal-content .input-field.left-align a {
  border-radius: 3px;
  background-color: #0042FF !important;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  cursor: pointer;
  min-width: 140px;
  height: unset;
}

.general-settings-page .modal .modal-content .yt-button {
  color: #3F3F3F;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px !important;
  border: 1.05px solid #eaeaea;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: unset;
}

.general-settings-page .modal .modal-content .videoItem {
  margin-bottom: 10px;
  padding: 6px;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.general-settings-page .modal .modal-content .videoItem_data {
  width: calc(100% - 105px);
}

.general-settings-page .modal .modal-content .videoItem:hover .title {
  text-decoration: underline;
}

.general-settings-page .modal .modal-content #search_channel_result_container .videoItem .icon, .general-settings-page .modal .modal-content #search_result_container .videoItem .icon {
  height: 90px;
  width: 105px;
}

.general-settings-page .modal .modal-content #search_channel_result_container .videoItem .title, .general-settings-page .modal .modal-content #search_result_container .videoItem .title {
  color: #263238;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.general-settings-page .modal .modal-content #search_channel_result_container .videoItem .description, .general-settings-page .modal .modal-content #search_result_container .videoItem .description {
  color: #616161;
  font-size: 14px;
  margin-top: 0;
  overflow: hidden;
  line-height: 20px;
  margin: 0;
}

.general-settings-page .modal .modal-content #youtube_channel_search_more {
  border-radius: 3px;
  background-color: #0042FF;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  cursor: pointer;
  min-width: 140px;
  margin-bottom: 30px;
}

#modalLinkDeleteChannel .modal-content {
  padding: 0;
}

#modalLinkDeleteChannel .modal-content .row {
  margin: 0;
  padding: 0;
}

#modalLinkDeleteChannel .modal-content .row .col {
  padding: 0;
}

#modalLinkDeleteChannel .modal-content .row .col h5 {
  text-align: left !important;
  padding: 22px 23px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 16px;
}

#modalLinkDeleteChannel .modal-content .row .col .row.buttons {
  display: flex;
  margin: 0;
  justify-content: start;
  padding: 0px 23px;
  margin-bottom: 20px;
  gap: 10px;
  margin-top: 15px;
}

#modalLinkDeleteChannel .modal-content .row .col .row.buttons .col.s6 {
  float: unset;
  margin: 0;
  width: unset;
  padding: 0;
}

#modalLinkDeleteChannel .modal-content .row .col .row.buttons .col.s6 .btn.red {
  border-radius: 3px;
  background-color: #b20000 !important;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  cursor: pointer;
  height: unset;
  text-transform: capitalize;
  box-shadow: none;
}

#modalLinkDeleteChannel .modal-content .row .col .row.buttons .col.s6 .modal-close {
  float: unset;
  position: relative;
  right: unset;
  top: unset;
  border-radius: 3px;
  background-color: #f8f8f8 !important;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #262626;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  height: unset;
  border: 1px solid #cfcfcf;
  box-shadow: none;
  text-transform: capitalize;
}

#campaignAddFunds {
  width: -moz-fit-content;
  width: fit-content;
}

#campaignAddFunds .modal-content {
  padding: 0 !important;
}

#campaignAddFunds .mobile_titles {
  display: none !important;
}

#campaignAddFunds .section {
  padding: 0;
}

#campaignAddFunds .sidebar {
  display: none;
}

#campaignAddFunds .content {
  width: 100%;
}

#campaignAddFunds .content .row .col {
  margin: 0;
  width: 100%;
  padding: 0;
}

#campaignAddFunds .content .row .col label {
  left: 0 !important;
}

#campaignAddFunds .content #closePaymentModal {
  padding: 9px 25px;
  font-size: 16.8px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  text-align: center;
  border-radius: 4px;
  margin: 0;
  height: unset;
  text-transform: capitalize;
  border: 1px solid #dedede;
  margin-right: 6px;
}

#campaignAddFunds .content .btn.green {
  letter-spacing: 0.6px;
  color: #fff !important;
}

#campaignAddFunds .content #totalViewsFunds {
  padding: 0;
  padding-right: 15px;
}

#campaignAddFunds .content .title-header {
  background-color: unset !important;
  color: #494949;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 22px;
  margin: 0;
  border: none;
  box-shadow: unset !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 9px;
  margin-bottom: 35px !important;
  border-radius: 0;
}

#campaignAddFunds .content .title-header h5 {
  letter-spacing: 0px;
}

#campaignAddFunds .content .title-header #_scheduleEndDateField {
  margin: 0;
  width: 100%;
  padding: 0;
}

#campaignAddFunds .content .title-header .col {
  padding: 0;
}

#campaignAddFunds .content .title-header .col label {
  left: 0;
}

#campaignAddFunds .content .title-header .col.s12.left-align {
  margin: 0;
  padding: 0;
}

#campaignAddFunds .content .title-header #closePaymentModal {
  padding: 9px 25px;
  font-size: 16.8px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  text-align: center;
  border-radius: 4px;
  margin: 0;
  height: unset;
  text-transform: capitalize;
  border: 1px solid #dedede;
  margin-right: 6px;
}

#campaignAddFunds .content .title-header .btn.green {
  letter-spacing: 0.6px;
  color: #fff !important;
}

#campaignAddFunds .content .title-header i {
  display: none;
}

.page-auto-promote .container {
  z-index: unset;
}

.auto_promote.settings .disabledAutoPromote {
  color: #fff !important;
}

.settings {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 41px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px;
  max-width: 1345px;
  width: 100%;
  justify-content: start;
}

.settings .sidebar {
  width: 40%;
  max-width: 300px;
}

.settings .sidebar h1 {
  color: #000000;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -1.05px;
  line-height: 40px;
  line-height: 30px;
  margin-top: -3px;
}

.settings .sidebar ul {
  margin-top: 16px;
}

.settings .sidebar ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 3px;
  cursor: pointer;
}

.settings .sidebar ul li p {
  margin: 0;
}

.settings .sidebar ul li p:nth-child(odd) {
  margin-right: 5px;
  margin-left: auto;
  letter-spacing: 0.8px;
  font-weight: 300;
}

.settings .sidebar ul li.selected {
  background: #E3E7EC;
}

.settings .sidebar ul li:hover {
  background: #efefef;
}

.settings .sidebar ul li.selected:hover {
  background: #dfe3e7;
}

.settings .content {
  width: 60%;
  max-width: 640px;
}

.settings .block {
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 11px 18px;
  padding-bottom: 18px;
}

.settings .block .input-field input {
  margin: 0;
  width: -webkit-fill-available;
}

.settings .block #totalViewsFunds {
  margin-top: 6px;
}

.settings .block #totalViewsFunds b {
  font-weight: 500;
}

.settings .block label {
  color: #5C5B5B;
  font-size: 15px !important;
  letter-spacing: -0.08px;
  line-height: 17px;
  font-weight: 300;
}

.settings .block .under_select_manage_funds {
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.11px;
  line-height: 17px;
  margin-top: 4px;
}

.settings .block .btn.green {
  background-color: #0042FF !important;
  padding: 9px 25px;
  color: #FFFFFF;
  font-size: 16.8px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  text-align: center;
  border-radius: 4px;
  margin: 0;
  height: unset;
  text-transform: capitalize;
}

.settings .block #paymentMethodTabs {
  display: none;
}

.settings .block .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 9px;
  margin-bottom: 20px;
}

.settings .block .top h2 {
  color: #494949;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 22px;
  margin: 0;
}

.settings .block .top p.action {
  font-size: 14px;
  color: #484848;
  margin: 0;
  cursor: pointer;
  border-radius: 3px;
  background-color: #0042FF;
  border: none;
  padding: 8px 15px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

.settings .block .top p.action:hover {
  text-decoration: underline;
}

.settings .block .top .switch_wrap {
  cursor: pointer;
}

.settings .block .top .switch_wrap .switch {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
}

.settings .block .top .switch_wrap .switch .option {
  color: #4B4B4B;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
  text-align: right;
  padding: 7px 15px;
  padding-bottom: 8px;
  z-index: 9;
}

.settings .block .top .switch_wrap .switch .option_selected {
  color: #fff;
}

.settings .block .top .switch_wrap .switch .disabled {
  color: #a8a8a8;
  cursor: not-allowed;
}

.settings .block .top .switch_wrap .switch .selection {
  position: absolute;
  border-radius: 30px;
  height: 85%;
  width: 45%;
  left: 3px;
  background: #0042FF;
  transition: left 0.3s ease, width 0.3s ease;
}

.settings .block form {
  margin-top: 7px;
  display: none;
}

.settings .block form .form .field_wrap {
  margin-bottom: 13px;
}

.settings .block form .form .field_wrap label {
  color: #5C5B5B;
  font-size: 15px;
  letter-spacing: -0.08px;
  line-height: 17px;
  font-weight: 300;
}

.settings .block form .form .field_wrap .helper {
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.11px;
  line-height: 17px;
  margin-top: 4px;
}

.settings .block form .form .field_wrap input, .settings .block form .form .field_wrap select {
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  background: none;
}

.settings .block form .form .field_wrap select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #F9F9F9;
  padding: 12px 14px;
  padding-left: 12px;
  margin-top: 5px;
  width: 100%;
}

.settings .block form .form .field_wrap.amount .input_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  background-color: #F9F9F9;
  padding: 3px;
  padding-left: 17px;
  margin-top: 5px;
}

.settings .block form .form .field_wrap.amount .input_wrap .prediction {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid #e4e4e4;
  font-weight: 500;
  border-radius: 3px;
  background: #ffffff94;
  color: #2A2A2A;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.42px;
  line-height: 18px;
}

.settings .block form #confirmPayment, .settings .block form button.submission {
  background: #0042FF;
  padding: 9px 25px;
  color: #FFFFFF;
  font-size: 16.8px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  text-align: center;
  border-radius: 4px;
  margin-top: 14px;
}

.settings .block form.selected {
  display: block;
}

.settings .option_2_payment {
  display: none;
}

.settings .form-billing {
  padding-top: 14px;
  padding-bottom: 9px;
}

.settings .form-billing .row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 12px;
}

.settings .form-billing .row .input_wrap {
  width: 100%;
}

.settings .form-billing .row .input_wrap p {
  color: #4C4C4C;
  font-size: 14px;
  letter-spacing: -0.28px;
  line-height: 17px;
  margin-bottom: 4px;
  color: #5C5B5B;
  font-size: 15px;
  letter-spacing: -0.08px;
  line-height: 17px;
  font-weight: 300;
}

.settings .form-billing .row .input_wrap input {
  border: 0.5px solid #BCBCBC;
  background-color: #F8F8F8;
  color: #AEAEAE;
  padding: 13px 16px;
  width: 100%;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  border-radius: 5px;
}

.settings .form-billing .row .input_wrap select {
  border: 0.5px solid #BCBCBC;
  border-radius: 2px;
  background-color: #F8F8F8;
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.27px;
  line-height: 19px;
  padding: 10px 14px;
  padding-left: 11px;
  width: 100%;
  color: #3A3A3A;
  padding: 13px 14px;
  width: 100%;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 22px;
  border-radius: 5px;
}

.settings .form-billing .row:nth-child(1) {
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}

.settings .form-billing .row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.settings .option_2_payment.selected {
  margin-top: 15px;
  display: block;
}

.settings .option_2_payment.selected .top {
  padding: 7px 0;
  padding-bottom: 14px;
}

.settings .option_2_payment.selected .top p {
  color: #6E6E6E;
  font-size: 15px;
  letter-spacing: -0.13px;
  line-height: 18px;
  text-align: right;
}

.settings .option_2_payment.selected form {
  display: block;
  margin-top: 14px;
}

.settings .option_2_payment.selected form button {
  margin-top: 24px;
  position: relative;
}

.settings .option_2_payment.selected form .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.settings .option_2_payment.selected form .spinner_wrap {
  display: none;
}

.settings .option_2_payment.selected form .spinner_wrap.active {
  top: 17%;
  left: 0;
  display: block;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  background: #0042ff;
  text-align: center;
}

.settings .option_2_payment.selected .payment_wrap {
  display: flex;
  gap: 15px;
  position: relative;
}

.settings .option_2_payment.selected .payment_wrap .side:nth-child(1) {
  width: 70%;
  position: relative;
}

.settings .option_2_payment.selected .payment_wrap .side:nth-child(1) .block {
  display: none;
}

.settings .option_2_payment.selected .payment_wrap .side:nth-child(1) .block.show {
  display: block;
}

.settings .option_2_payment.selected .payment_wrap .side:nth-child(1) .paypal_block .img_wrap, .settings .option_2_payment.selected .payment_wrap .side:nth-child(1) .venmo_block .img_wrap, .settings .option_2_payment.selected .payment_wrap .side:nth-child(1) .apay_block .img_wrap {
  padding: 90px !important;
}

.settings .option_2_payment.selected .payment_wrap .side:nth-child(1) .spinner {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2.4px solid #0042ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.settings .option_2_payment.selected .payment_wrap .side:nth-child(1) .spinner_wrap {
  display: none;
}

.settings .option_2_payment.selected .payment_wrap .side.disabled:nth-child(1) .spinner_wrap {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: none;
}

.settings .option_2_payment.selected .payment_wrap .side.disabled:nth-child(1):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #7777773d;
  height: 100%;
  border-radius: 4px;
}

.settings .option_2_payment.selected .payment_wrap .side:nth-child(2) {
  width: 30%;
}

.settings .option_2_payment.selected .side {
  gap: 20px;
}

.settings .disclaimer {
  color: #6D6D6D;
  font-size: 15px;
  letter-spacing: -0.18px;
  line-height: 17px;
  background: #fff;
  border: none;
  padding: 12px 20px;
  padding-bottom: 14px;
  width: 100%;
  margin-top: 14px;
  font-weight: 300;
  display: none;
}

.settings .disclaimer.selected {
  display: block;
}

#paymentSpecialContainer .row {
  margin: 0;
}

#paymentSpecialContainer .row #paymentSpecialMoreBudget {
  background: #F4F9FF !important;
  color: #000 !important;
  border: 1px solid #bfc9d4;
  width: auto;
}

#paymentSpecialContainer .row #paymentSpecialMoreBudget #paymentSpecialNote {
  color: #000 !important;
  line-height: 12px;
}

#paymentSpecialContainer .row #paymentSpecialMoreBudget .clickable {
  font-size: 13px;
  letter-spacing: 0.6px;
  box-shadow: none;
  color: white;
  background: #0042ff !important;
}

#paymentSpecialContainer .row #paymentSpecialMoreBudget #paymentSpecialEnoughBudget {
  padding: 9px 13px;
  line-height: 19px;
  background-color: #358c39 !important;
  color: #358c39 !important;
}

.settings.manage_funds, .general-settings-page .container {
  padding-top: 35px;
}

.general-settings-page .settings {
  padding: 0;
}

.settings.payment_history {
  max-width: 1345px;
  width: 100%;
  padding-top: 35px;
}

.settings.payment_history .table-header {
  background: none;
}

.settings.payment_history .content {
  width: 100%;
  max-width: unset;
  overflow: scroll;
}

.settings.payment_history .content .top {
  width: 1000px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: space-between;
}

.settings.payment_history .content .top .top_text {
  width: 30%;
  border: 1px solid #F8F8F8;
  border-radius: 4px;
  background-color: #FFFFFF;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: 24px;
  letter-spacing: -0.7px;
  font-weight: 500;
  color: #4C4C4C;
}

.settings.payment_history .content .top .stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
  height: 60px;
  gap: 4px;
}

.settings.payment_history .content .top .stats .stat {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 13px 12px;
}

.settings.payment_history .content .top .stats .stat p {
  color: #6C6C6C;
  font-size: 14px;
  letter-spacing: -0.45px;
  line-height: 17px;
  margin-bottom: -2px;
  margin-top: -3px;
  font-weight: 300;
  margin: 0;
}

.settings.payment_history .content .top .stats .stat h3 {
  color: #2E2E2E;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 19px;
  margin: 0;
}

.settings.payment_history .content table {
  width: 100%;
  margin-top: 20px;
  width: 1000px;
}

.settings.payment_history .content table thead {
  width: 100%;
}

.settings.payment_history .content table thead tr th {
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  color: #6C6C6C;
  padding-bottom: 5px;
}

.settings.payment_history .content table tbody {
  width: 100%;
  background: #fff;
}

.settings.payment_history .content table tbody tr td {
  text-align: left;
  background: #fff;
  color: #484848;
  font-size: 16px;
  letter-spacing: -0.17px;
  line-height: 19px;
  height: 68px;
}

.settings.payment_history .content table tbody tr td:nth-child(1) {
  padding-left: 16px;
  color: #727272;
  font-size: 15px;
  letter-spacing: 0.28px;
  line-height: 18px;
  font-weight: 300;
}

.settings.payment_history .content table tbody tr td:nth-child(2) {
  color: #484848;
  font-size: 16px;
  letter-spacing: 0.17px;
  line-height: 19px;
  font-weight: 300;
}

.settings.payment_history .content table tbody tr td.green:nth-child(2) {
  color: #008E29;
  font-weight: 300;
}

.settings.payment_history .content table tbody tr td.green:nth-child(2) p:nth-child(2) {
  color: #484848;
  font-size: 14px;
  letter-spacing: 0.15px;
}

.settings.payment_history .content table tbody tr td:nth-child(3) {
  font-weight: 300;
}

.settings.payment_history .content table tbody tr td:nth-child(3) p:nth-child(1) {
  color: #949494;
  font-family: "Founders Grotesk";
  font-size: 13px;
  letter-spacing: 0.56px;
  line-height: 16px;
  margin-bottom: -5px;
}

.settings.payment_history .content table tbody tr td:nth-child(4) {
  font-weight: 300;
}

.settings.payment_history .content table tbody tr td:nth-child(5) {
  min-width: 80px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
}

.settings.payment_history .content table tbody tr td:nth-child(5) img {
  height: 14px;
}

.settings.payment_history .content table tbody tr td:nth-child(6) {
  color: #00135B;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
  text-align: left;
}

.settings.payment_history .content table tbody tr td:nth-child(6) .refund {
  border: 1px solid #2450F2;
  border-radius: 2px;
  background-color: #F7F9FF;
  padding: 6px 20px;
}

.settings.payment_history .content table tbody tr:nth-child(even) td {
  background: #FBFAFA;
}

.settings.payment_history .content table tbody tr:hover td {
  background: #F3F3F3;
}

.settings.payment_history .content table tbody tr:first-child td {
  border-radius: 4px 4px 0 0;
}

.settings.payment_history .content table tbody tr:last-child td {
  border-radius: 0 0 4px 4px;
}

.settings.payment_history .content table .spinner {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.9px solid #1c274c;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.settings.payment_history .content table .spinner.active {
  display: block;
}

.settings.payment_history .content table .download_inv {
  display: none;
}

.settings.payment_history .content table .download_inv.active {
  display: block;
}

@keyframes spinner-bulqg1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes spinner-oaa3wk {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

.settings.my-channels .content .channels_block .bottom table {
  margin-top: 12px;
  width: 100%;
}

.settings.my-channels .content .channels_block .bottom table thead tr th {
  color: #858585;
  font-family: "Founders Grotesk";
  font-size: 14px;
  letter-spacing: 0.03px;
  line-height: 17px;
  text-align: center;
  font-weight: 300;
  text-align: left;
  padding-bottom: 6px;
  text-align: center;
  padding-right: 4px;
}

.settings.my-channels .content .channels_block .bottom table thead tr th:first-child {
  text-align: left;
  padding-right: 0;
}

.settings.my-channels .content .channels_block .bottom table tbody tr:first-child td {
  border-top: 1px solid #E4E4E4;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:nth-child(1) {
  border-left: 1px solid #E4E4E4;
  padding-left: 15px;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:last-child {
  border-right: 1px solid #E4E4E4;
  padding-right: 15px;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td {
  border-bottom: 1px solid #E4E4E4;
}

.settings.my-channels .content .channels_block .bottom table tbody tr:last-child td {
  border-bottom: 1px solid #E4E4E4;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td {
  padding: 10px;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td.activated p {
  background: unset !important;
  text-align: left !important;
  border: 1px solid #d7d7d7 !important;
  border: unset !important;
  color: #000 !important;
  margin: 0;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:first-child p:nth-child(1) {
  margin-bottom: -3px;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 19px;
  margin: 0;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:first-child p:nth-child(2) {
  color: #949494;
  font-size: 13px;
  letter-spacing: -0.14px;
  line-height: 16px;
  margin: 0;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:first-child p:nth-child(3) {
  color: #949494;
  font-size: 13px;
  letter-spacing: -0.14px;
  line-height: 16px;
  margin: 0;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:nth-child(2) p, .settings.my-channels .content .channels_block .bottom table tbody tr td:nth-child(3) p {
  border: 1px solid #2450F2;
  border-radius: 2px;
  background-color: #F7F9FF;
  text-align: center;
  color: #00135B;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 18px;
  margin: 0 auto;
  cursor: pointer;
  margin: 0;
  margin: 0 auto;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:nth-child(2) p:hover {
  background: #2450F2;
  color: #fff;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:nth-child(3) p:hover {
  color: #fff;
  background: #a81313;
  border: 1px solid #a81313;
}

.settings.my-channels .content .channels_block .bottom table tbody tr td:last-child p {
  border: 1px solid #D3BABA;
  border-radius: 2px;
  background-color: #FFFBFB;
  text-align: center;
  color: #9A3838;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 17px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 18px;
  margin: 0 auto;
  margin: 0;
  margin: 0 auto;
}

.settings.my-channels .content .channels_block .bottom table tbody tr:nth-child(even) {
  background: #FAFAFA;
}

.settings.my-channels .content .channels_block .bottom .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
  border: 1.9px solid #365ddf;
  width: 28px;
  margin: 20px auto;
  height: 28px;
  margin-top: 33px;
  display: none;
}

.settings.my-channels .content .channels_block .bottom .spinner.active {
  display: block;
}

.settings.referrals {
  padding-top: 35px;
}

.settings.referrals .content .block {
  padding-top: 18px;
  margin-bottom: 10px;
}

.settings.referrals .content .block.head_block .top {
  padding-bottom: 12px;
  margin: 0;
}

.settings.referrals .content .block.head_block .bottom p {
  color: #6C6C6C;
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 18px;
  margin-top: 12px;
  margin-bottom: 0;
}

.settings.referrals .content .block.input_block .row {
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 20px;
  margin-bottom: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.settings.referrals .content .block.input_block .row .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.settings.referrals .content .block.input_block .row .info h3 {
  color: #484848;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 17px;
  margin: 0;
}

.settings.referrals .content .block.input_block .row .info .helper {
  color: #2A2A2A;
  font-size: 15px;
  letter-spacing: 0.1px;
  line-height: 18px;
  text-align: right;
  font-weight: 300;
  margin: 0;
}

.settings.referrals .content .block.input_block .row .input {
  margin-top: 10px;
}

.settings.referrals .content .block.input_block .row .input .input_wrap {
  position: relative;
}

.settings.referrals .content .block.input_block .row .input .input_wrap form {
  display: block;
}

.settings.referrals .content .block.input_block .row .input .input_wrap input {
  border: 0.54px solid #B8B8B8;
  border-radius: 4px;
  width: 100%;
  padding: 14px 20px;
  background-color: #FCFCFC;
  color: #424242;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 20px;
  height: unset;
  width: -webkit-fill-available;
}

.settings.referrals .content .block.input_block .row .input .input_wrap button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-52%);
}

.settings.referrals .content .block.input_block .row .input .input_wrap .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.settings.referrals .content .block.input_block .row .input .input_wrap .spinner_wrap {
  display: none;
}

.settings.referrals .content .block.input_block .row .input .input_wrap .spinner_wrap.active {
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  background: #0042ff;
  text-align: center;
  padding: 4px;
  height: 25px;
  border-radius: 4px;
  background: #fff;
}

.settings.referrals .content .block.input_block .row .input .input_wrap .copy {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.44px;
  line-height: 19px;
  text-align: center;
  border: none;
  background: none;
  top: 35%;
}

.settings.referrals .content .block.input_block .row:nth-child(2) .input .input_wrap input {
  margin: 0;
}

.settings.referrals .content .block.input_block .row:nth-child(2) .input .input_wrap button {
  margin-top: 0;
  transform: translateY(-50%);
  right: 5px;
  border: none;
  background: none;
  top: 49%;
  background: #fff;
  background-color: #f2f5ff !important;
  border: 1px solid #b8c6ff;
  box-shadow: unset;
  color: #244ff2;
  padding: 7px 14px;
}

.settings.referrals .content .block.input_block .row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
  padding-top: 20px;
}

.settings.referrals .content .block.list {
  background: unset;
  padding: 0;
}

.settings.referrals .content .block.list h2 {
  color: #494949;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 22px;
  margin-bottom: 10px;
  margin-top: 28px;
}

.settings.referrals .content .block.list .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 13px 15px;
  border-radius: 3px;
  margin-bottom: 5px;
  border: 0.5px solid #E6E6E6;
}

.settings.referrals .content .block.list .row .email {
  color: #2B2A2A;
  font-size: 16px;
  letter-spacing: -0.18px;
  line-height: 19px;
  margin: 0;
}

.settings.referrals .content .block.list .row .time {
  color: #6F6F6F;
  font-size: 16px;
  letter-spacing: -0.18px;
  line-height: 19px;
  color: #6F6F6F;
  font-size: 16px;
  letter-spacing: -0.18px;
  line-height: 19px;
  text-align: right;
  margin: 0;
}

.card_input_block {
  border-radius: 4.55px;
  background: linear-gradient(165.95deg, #21AEF6 0%, #0E76EA 100%);
  padding: 14px !important;
}

.card_input_block .title p {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 14px;
  text-align: right;
  padding-bottom: 42px;
}

.card_input_block .title img {
  height: 15px;
  position: absolute;
  display: none;
}

.card_input_block .title img.show {
  display: block;
}

.card_input_block .title img.mastercard {
  height: 20px;
}

.card_input_block .card_info .input_wrap label {
  color: #FFFFFF;
  font-size: 14.8px;
  letter-spacing: -0.47px;
  line-height: 17px;
  font-weight: 300;
  display: block;
  margin-bottom: 4px;
}

.card_input_block .card_info .input_wrap input {
  width: 100%;
  color: #000000;
  font-size: 15.94px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 19px;
  padding: 13px;
  background: #ffffffe8;
  border-radius: 4.5px;
}

.card_input_block .card_info .input_wrap input::-moz-placeholder {
  color: #000000;
}

.card_input_block .card_info .input_wrap input::placeholder {
  color: #000000;
}

.card_input_block .card_info .inputs_wrap {
  display: flex;
  gap: 11px;
  width: 100%;
  margin-top: 8px;
}

.card_input_block .card_info .inputs_wrap .input_wrap:nth-child(1) {
  width: 50%;
}

.card_input_block .card_info .inputs_wrap .input_wrap:nth-child(2) {
  width: 50%;
}

.card_input_block .card_info #card_input_block_number, .card_input_block .card_info #card_input_block_expiration, .card_input_block .card_info #card_input_block_cvv {
  height: 45px;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffffe8;
}

.paypal_block, .venmo_block, .gpay_block, .apay_block, .saved_block {
  text-align: center;
  display: none;
  padding: 0 !important;
}

.paypal_block .img_wrap, .venmo_block .img_wrap, .gpay_block .img_wrap, .apay_block .img_wrap, .saved_block .img_wrap {
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  background-color: #F6F6F6 !important;
  padding: 76px !important;
}

.paypal_block p, .venmo_block p, .gpay_block p, .apay_block p, .saved_block p {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.51px;
  line-height: 19px;
  text-align: left;
  margin-bottom: 8px;
}

.paypal_block img, .venmo_block img, .gpay_block img, .apay_block img, .saved_block img {
  margin: 0 auto;
  height: 42px;
  cursor: pointer;
}

.paypal_block ul li, .venmo_block ul li, .gpay_block ul li, .apay_block ul li, .saved_block ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid #6089FF;
  border-radius: 2px;
  background-color: #F9FAFF;
}

.paypal_block ul li .side:nth-child(1), .venmo_block ul li .side:nth-child(1), .gpay_block ul li .side:nth-child(1), .apay_block ul li .side:nth-child(1), .saved_block ul li .side:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: start;
}

.paypal_block ul li .side:nth-child(1) img, .venmo_block ul li .side:nth-child(1) img, .gpay_block ul li .side:nth-child(1) img, .apay_block ul li .side:nth-child(1) img, .saved_block ul li .side:nth-child(1) img {
  width: 17px;
  margin: unset;
  margin-right: 8px;
}

.paypal_block ul li .side:nth-child(1) p, .venmo_block ul li .side:nth-child(1) p, .gpay_block ul li .side:nth-child(1) p, .apay_block ul li .side:nth-child(1) p, .saved_block ul li .side:nth-child(1) p {
  margin: 0;
}

.paypal_block ul li .side:nth-child(2) .option, .venmo_block ul li .side:nth-child(2) .option, .gpay_block ul li .side:nth-child(2) .option, .apay_block ul li .side:nth-child(2) .option, .saved_block ul li .side:nth-child(2) .option {
  justify-content: end;
}

.paypal_block ul li .side:nth-child(2) .option label, .venmo_block ul li .side:nth-child(2) .option label, .gpay_block ul li .side:nth-child(2) .option label, .apay_block ul li .side:nth-child(2) .option label, .saved_block ul li .side:nth-child(2) .option label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.paypal_block ul li .side:nth-child(2) .option label p, .venmo_block ul li .side:nth-child(2) .option label p, .gpay_block ul li .side:nth-child(2) .option label p, .apay_block ul li .side:nth-child(2) .option label p, .saved_block ul li .side:nth-child(2) .option label p {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.paypal_block ul li .side:nth-child(2) .option label img, .venmo_block ul li .side:nth-child(2) .option label img, .gpay_block ul li .side:nth-child(2) .option label img, .apay_block ul li .side:nth-child(2) .option label img, .saved_block ul li .side:nth-child(2) .option label img {
  -o-object-fit: contain;
     object-fit: contain;
}

.paypal_block.show, .venmo_block.show, .gpay_block.show, .apay_block.show, .saved_block.show {
  display: block;
}

.account-settings-page .section.user-settings, .account-settings-page .section.user-settings, .account-settings-page .section.password-change, .account-settings-page .section.bg-white.shadow {
  display: none;
}

.account-settings-page #page-container {
  margin: 0;
}

.account-settings-page .disclaimer {
  display: none;
}

.account-settings-page .account-settings {
  padding: 0;
  max-width: 1400px;
  width: 100%;
}

.account-settings-page .account-settings .sidebar {
  width: 40%;
  max-width: unset;
  height: 100%;
  min-height: 690px;
  border: 1px solid #ECECEC;
  background-color: #FBFBFB;
  border-top: unset;
  max-width: 530px;
  position: relative;
}

.account-settings-page .account-settings .sidebar .sidebar_wrapper {
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
  max-width: 260px;
  margin-right: 45px;
  position: relative;
  display: block;
  min-height: 670px;
}

.account-settings-page .account-settings .sidebar .sidebar_wrapper h1 {
  margin-bottom: 22px;
}

.account-settings-page .account-settings .sidebar .sidebar_wrapper ul li {
  border: 0.5px solid #dadada;
  border-radius: 3px;
  background-color: #FFFFFF;
  margin-bottom: 8px;
  padding: 9px 13px;
}

.account-settings-page .account-settings .sidebar .sidebar_wrapper ul li p {
  margin: 0;
}

.account-settings-page .account-settings .sidebar .sidebar_wrapper ul li.selected {
  border: 0.5px solid #0C56D9;
  border-radius: 3px;
  background-color: #FBFCFF;
  font-weight: 500;
}

.account-settings-page .account-settings .sidebar .sidebar_wrapper .help {
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.account-settings-page .delete-account .content form {
  max-width: 600px;
}

.account-settings-page .delete-account .content form .explainer {
  margin-bottom: 20px;
}

.account-settings-page .delete-account .content form .checkmark_wrapper {
  color: #505050;
  font-size: 14px;
  letter-spacing: -0.31px;
  line-height: 17px;
  display: flex;
  align-items: center;
}

.account-settings-page .delete-account .content form .checkmark_wrapper label {
  margin-left: 8px;
  margin-top: 3px;
  font-size: 13px;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 15px;
}

.account-settings-page .delete-account .content form .checkmark_wrapper input {
  width: 16px;
  height: 16px;
}

.account-settings-page .delete-account .content form .save_button button {
  background: #9D3C3C;
  color: #ffffff80;
  font-size: 16px;
  padding: 9px 23px;
  padding-bottom: 10px;
  border: none;
}

.account-settings-page .content {
  margin-top: 24px;
}

.account-settings-page .content form {
  border-radius: 5px;
  background-color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px;
  min-width: 600px;
  border-radius: 5px;
  padding-top: 18px;
}

.account-settings-page .content form h2 {
  color: #494949;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.77px;
  line-height: 29px;
  border-bottom: 1px solid #ededed;
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.account-settings-page .content form h2 p {
  margin: 0;
  margin-right: 10px;
}

.account-settings-page .content form .explainer {
  color: #757575;
  font-size: 14px;
  letter-spacing: -0.37px;
  line-height: 18px;
}

.account-settings-page .content form .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 12px;
}

.account-settings-page .content form .row div {
  width: 100%;
}

.account-settings-page .content form .row p {
  color: #858585;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.44px;
  line-height: 20px;
  margin-bottom: 5px;
}

.account-settings-page .content form .row input {
  border: 0.54px solid #DBDBDB;
  border-radius: 7px;
  background-color: #FCFCFC;
  width: 100%;
  padding: 10px 16px;
  height: unset;
  width: -webkit-fill-available;
  margin-bottom: 0;
  max-width: unset;
}

.account-settings-page .content form .row input:disabled {
  background-color: #f4f4f4;
  border: 0.54px solid #d0d0d0;
  cursor: not-allowed;
  color: #8b8b8b;
}

.account-settings-page .content form .row .helper {
  margin-bottom: 0;
  color: #929292;
  font-size: 12px;
  letter-spacing: -0.44px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 3px;
  margin-left: auto;
}

.account-settings-page .content form .row input[readonly] {
  color: #979797;
  font-weight: 500;
  max-width: unset;
}

.account-settings-page .content form .row input.invalid {
  border: 0.54px solid #880000;
  border-radius: 7px;
  background-color: #fff3f3;
  color: #914949;
}

.account-settings-page .content form .row input.invalid::-moz-placeholder {
  color: #914949;
}

.account-settings-page .content form .row input.invalid::placeholder {
  color: #914949;
}

.account-settings-page .content form .row .select_wrap {
  position: relative;
}

.account-settings-page .content form .row .select_wrap select {
  border: 0.54px solid #DBDBDB;
  border-radius: 7px;
  background-color: #FCFCFC;
  width: 100%;
  padding: 12px 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  max-width: unset;
}

.account-settings-page .content form .row .select_wrap img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.account-settings-page .content form .row_1 {
  margin-bottom: 12px;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 20px;
}

.account-settings-page .content form .row_1 div {
  width: 49%;
}

.account-settings-page .content form .save_button button {
  border-radius: 3.6px;
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 16.8px;
  font-weight: 600;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  text-align: center;
  padding: 10px 27px;
  padding-bottom: 11px;
  margin-top: 15px;
  position: relative;
  border: none;
}

.account-settings-page .content form .save_button button:disabled,
.account-settings-page .content form .save_button button[disabled=disabled] {
  background: #3b518e;
  color: #dde1f1;
}

.account-settings-page .content form .save_button .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.9px solid #dce4ff;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

.account-settings-page .content form .save_button .spinner_wrap {
  display: none;
}

.account-settings-page .content form .save_button .spinner_wrap.active {
  top: 17%;
  left: 0;
  display: block;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70%;
  background: #0042ff;
  text-align: center;
}

.popup_my_channels {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.239216);
  z-index: 999;
  left: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.popup_my_channels .back {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  cursor: pointer;
}

.popup_my_channels .popup_my_channels_wrapper {
  width: 100%;
  display: block;
  /*max-width: 620px;*/
  background: #fff;
  /*margin-top: -50px;*/
  border-radius: 4px;
  padding: 0;
  max-height: 750px;
  overflow-y: scroll;
  z-index: 9;
  position: relative;
}

.popup_my_channels .popup_my_channels_wrapper.active {
  display: block;
}

.popup_my_channels #popup_my_channels_remove .content {
  padding-bottom: 25px;
}

.popup_my_channels #popup_my_channels_remove .content .actions {
  justify-content: start;
  margin-top: 25px;
}

.popup_my_channels #popup_my_channels_remove .content .actions #link_channel_delete {
  border-radius: 3px;
  background-color: #b20000;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  cursor: pointer;
}

.popup_my_channels #popup_my_channels_remove .content .actions #link_channel_delete:hover {
  background-color: #c80404;
}

.popup_my_channels .progress {
  border-radius: 0 1px 0 2px;
  background: linear-gradient(270deg, #7DB9FF 0%, #0042FF 100%);
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.popup_my_channels .heading {
  padding: 22px 23px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}

.popup_my_channels .heading p {
  margin: 0;
}

.popup_my_channels .heading .side:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.17px;
  line-height: 22px;
  margin: 0;
}

.popup_my_channels .heading .side:nth-child(2) {
  display: flex;
  gap: 10px;
}

.popup_my_channels .content {
  padding: 20px 23px;
  padding-top: 14px;
  padding-bottom: 37px;
}

.popup_my_channels .content h5 {
  text-align: left;
}

.popup_my_channels .content a img {
  margin-top: 20px;
}

.popup_my_channels .content .desc {
  color: #464646;
  font-size: 16px;
  letter-spacing: -0.15px;
  line-height: 21px;
  font-weight: 300;
  margin-bottom: 2px;
}

.popup_my_channels .content .how_to_link {
  margin-top: 25px;
}

.popup_my_channels .content .how_to_link .side_wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.popup_my_channels .content .how_to_link .side:nth-child(1) p, .popup_my_channels .content .how_to_link .side:nth-child(2) p {
  color: #262626;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 23px;
  margin-bottom: 8px;
  margin-top: 9px;
}

.popup_my_channels .content .how_to_link .side:nth-child(1) ul, .popup_my_channels .content .how_to_link .side:nth-child(2) ul {
  color: #464646;
  font-size: 16px;
  letter-spacing: -0px;
  line-height: 19px;
  list-style: decimal;
  padding-left: 14px;
  font-weight: 300;
}

.popup_my_channels .content .how_to_link .side:nth-child(1) ul li, .popup_my_channels .content .how_to_link .side:nth-child(2) ul li {
  margin-bottom: 3px;
  padding-left: 4px;
}

.popup_my_channels .content .how_to_link .side:nth-child(1) ul li a, .popup_my_channels .content .how_to_link .side:nth-child(2) ul li a {
  cursor: pointer;
}

.popup_my_channels .content .how_to_link .side:nth-child(1) ul li::marker, .popup_my_channels .content .how_to_link .side:nth-child(2) ul li::marker {
  font-weight: 500;
  color: #464646;
}

.popup_my_channels .content .how_to_link .side:nth-child(1) ul li:first-child, .popup_my_channels .content .how_to_link .side:nth-child(2) ul li:first-child {
  color: #0042FF;
  text-decoration: underline;
}

.popup_my_channels .content .how_to_link .side:nth-child(3) .switch {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  cursor: pointer;
}

.popup_my_channels .content .how_to_link .side:nth-child(3) .switch .option {
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.45px;
  line-height: 17px;
  text-align: right;
  padding: 7px 15px 8px;
  z-index: 9;
}

.popup_my_channels .content .how_to_link .side:nth-child(3) .switch .option_selected {
  color: #fff;
}

.popup_my_channels .content .how_to_link .side:nth-child(3) .switch .selection {
  position: absolute;
  border-radius: 30px;
  height: 85%;
  width: 45%;
  left: 3px;
  background: #0042ff;
  transition: left .3s ease, width .3s ease;
}

.popup_my_channels .content .how_to_link .side {
  display: none;
}

.popup_my_channels .content .how_to_link .side.active {
  display: block;
}

.popup_my_channels .content .how_to_link .q_faqs {
  display: none;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq {
  margin-bottom: 6px;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq .top {
  border: 1px solid #ECECEC;
  border-radius: 3px;
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  color: #424242;
  font-family: "Founders Grotesk";
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.14px;
  line-height: 19px;
  cursor: pointer;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq .top:hover {
  border: 1px solid #dfdfdf;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq .bottom {
  display: none;
  font-size: 15px;
  padding: 10px 14px;
  background: #fcfcfc;
  border: 1px solid #f5f5f5;
  border-top: 0;
  color: #535353;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq .bottom a {
  color: #0042FF;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq .bottom input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  margin-top: 3px;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq.active {
  display: block;
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq.active .top img {
  transform: rotate(180deg);
}

.popup_my_channels .content .how_to_link .q_faqs .q_faq.active .bottom {
  display: block;
}

.popup_my_channels .content .how_to_link .q_faqs.active {
  display: block;
}

.popup_my_channels .content .actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.popup_my_channels .content .actions .btn.primary {
  float: unset;
  position: relative;
  right: unset;
  top: unset;
  border-radius: 3px;
  background-color: #0042FF;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  cursor: pointer;
}

.popup_my_channels .content .actions .btn.white {
  color: #3F3F3F;
  font-family: "Founders Grotesk";
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  border: 1.05px solid #CBCBCB;
  border-radius: 3px;
  cursor: pointer;
  float: unset;
  position: relative;
  top: unset;
  left: unset;
  cursor: pointer;
}

.popup_my_channels .content .actions button:nth-child(2) {
  color: #3F3F3F;
  font-family: "Founders Grotesk";
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  border: 1.05px solid #CBCBCB;
  border-radius: 3px;
  cursor: pointer;
  float: unset;
  position: relative;
  top: unset;
  left: unset;
  cursor: pointer;
}

.popup_my_channels .content .actions button:nth-child(2):hover {
  background: #fbfbfb;
}

.popup_my_channels .content .actions button:nth-child(3), .popup_my_channels .content .actions button:nth-child(1) {
  border-radius: 3px;
  background-color: #0042FF;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  cursor: pointer;
}

.popup_my_channels .content .actions button:nth-child(3):hover, .popup_my_channels .content .actions button:nth-child(1):hover {
  background-color: #013be0;
}

.popup_my_channels #popup_my_channels_step_2 .desc:first-child {
  font-weight: 400;
}

.popup_my_channels #popup_my_channels_step_2 #popup_my_channels_final_click {
  border-radius: 3px;
  background-color: #0042FF;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.47px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 10px 21px;
  cursor: pointer;
}

.popup_my_channels #popup_my_channels_step_2 .ul_head {
  color: #262626;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 23px;
  margin-top: 22px;
  margin-bottom: 6px;
}

.popup_my_channels #popup_my_channels_step_2 ul {
  color: #464646;
  font-size: 16px;
  letter-spacing: -0px;
  line-height: 19px;
  list-style: decimal;
  padding-left: 14px;
  font-weight: 300;
}

.popup_my_channels #popup_my_channels_step_2 ul li {
  margin-bottom: 3px;
  padding-left: 4px;
}

.popup_my_channels #popup_my_channels_step_2 ul li a {
  cursor: pointer;
}

.popup_my_channels #popup_my_channels_step_2 ul li::marker {
  font-weight: 500;
  color: #464646;
}

.popup_my_channels #popup_my_channels_step_2 ul li:first-child {
  color: #0042FF;
  text-decoration: underline;
}

.popup_my_channels .content.active {
  display: block;
}

.popup_my_channels.active {
  display: flex;
}

.popup_my_channels.step2 .progress {
  width: 65%;
}

.campaign_loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  display: none;
  background: #f8f8f8;
  width: 100%;
  height: 100%;
  gap: 10px;
  /* Optional: subtle heading */
}

.campaign_loader .spinner_wrap .spinner {
  width: 70px;
  height: 70px;
  border: 6px solid #0042FF;
  border-radius: 50%;
  animation: spinner-bulqg1 0.9s infinite linear alternate, spinner-oaa3wk 1.8s infinite linear;
}

.campaign_loader .data .title {
  font-weight: 500;
  text-align: center;
  font-size: 17px;
  margin-top: 5px;
  letter-spacing: 0.1px;
}

.campaign_loader .data .subtitle {
  text-align: center;
  font-size: 16px;
  color: #808080;
  font-weight: 300;
  margin-top: -1px;
  letter-spacing: 0.1px;
}

.campaign_loader .video_name {
  position: absolute;
  bottom: 5%;
  color: #767676;
  font-size: 15px;
  margin: 0 20px;
  text-align: center;
}

.campaign_loader .video_name b {
  font-weight: 500;
  color: #a4a4a4;
}

.campaign_loader .progress-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(50, 68, 124, 0.1);
  padding: 32px 26px 26px 26px;
  width: 350px;
  max-width: 95vw;
  text-align: left;
  position: relative;
  margin: 0 auto;
}

.campaign_loader .video-label {
  font-size: 0.93rem;
  color: #a9a9a9;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.campaign_loader .video-summary {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.campaign_loader .video-thumb {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1.5px solid #ececec;
  margin-right: 13px;
  flex-shrink: 0;
}

.campaign_loader .video-title {
  font-size: 1.03rem;
  font-weight: 700;
  color: #1b2147;
  line-height: 1.27;
  letter-spacing: -0.2px;
  word-break: break-word;
}

.campaign_loader .progress-title {
  font-size: 1.02rem;
  font-weight: 500;
  color: #545454;
  margin-bottom: 17px;
  margin-top: 2px;
}

.campaign_loader .progress-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.campaign_loader .progress-step {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  margin-bottom: 11px;
  font-weight: 400;
  color: #b8bdd6;
  transition: color 0.2s, font-weight 0.2s;
}

.campaign_loader .progress-step:last-child {
  margin-bottom: 0;
}

.campaign_loader .check {
  width: 22px;
  height: 22px;
  margin-right: 13px;
  border-radius: 50%;
  border: 2px solid #e3eaff;
  background: #f5f7fe;
  color: #e3eaff;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, border 0.2s;
  flex-shrink: 0;
}

.campaign_loader .progress-step.completed .check {
  background: #0042ff;
  color: #fff;
  border: 2px solid #0042ff;
}

.campaign_loader .progress-step.completed {
  color: #7a86a9;
  font-weight: 400;
}

.campaign_loader .progress-step.active .check {
  background: #fff;
  color: #0042ff;
  border: 2px solid #0042ff;
  animation: bounce 0.5s;
}

.campaign_loader .progress-step.active {
  color: #0042ff;
  font-weight: 600;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.16);
  }
  100% {
    transform: scale(1);
  }
}

.campaign_loader .done-message {
  margin-top: 22px;
  text-align: center;
  font-size: 1.11rem;
  color: #15a551;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.campaign_loader .done-message.visible {
  opacity: 1;
}

.campaign_loader .spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #c7f4da;
  border-top: 3px solid #15a551;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-top: 7px;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 460px) {
  .campaign_loader .progress-box {
    padding: 22px 6vw 20px 6vw;
  }
  .campaign_loader .video-title {
    font-size: 0.97rem;
  }
  .campaign_loader .progress-step {
    font-size: 0.95rem;
  }
}

.campaign_loader.active {
  display: flex;
}

.popup_wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #0000003d;
  z-index: 999;
  left: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.popup_wrapper .popup_back {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  cursor: pointer;
}

.popup_wrapper .popup_campaign {
  width: 90%;
  display: none;
  max-width: 650px;
  background: #fff;
  margin-top: 50px;
  border-radius: 4px;
  padding: 25px;
  max-height: 700px;
  overflow-y: scroll;
  z-index: 9;
}

.popup_wrapper .popup_campaign .heading p {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.77px;
  line-height: 25px;
  margin-bottom: 10px;
  margin-top: 0;
}

.popup_wrapper .popup_campaign .heading p b {
  font-weight: 600;
}

.popup_wrapper .popup_campaign .info p {
  line-height: 21px;
  color: #424242;
}

.popup_wrapper .popup_campaign .info .desc {
  margin-bottom: 15px;
  font-size: 17px;
}

.popup_wrapper .popup_campaign .info button {
  background: #0042ff;
  padding: 7px 21px;
  padding-bottom: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 21.6px;
  text-align: center;
  border-radius: 4px;
  margin-top: 7px;
}

.popup_wrapper .popup_campaign_placements {
  position: absolute;
  top: 100px;
  margin: 0;
}

.popup_wrapper .popup_campaign_placements .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.popup_wrapper .popup_campaign_placements .heading p {
  margin-bottom: 0;
}

.popup_wrapper .popup_campaign_placements .heading .actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.popup_wrapper .popup_campaign_placements .heading .actions .add {
  border-radius: 2px;
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.21px;
  line-height: 19px;
  text-align: center;
  padding: 5px 12px;
  cursor: pointer;
}

.popup_wrapper .popup_campaign_placements .heading .actions .add:hover {
  background-color: #0036d0;
}

.popup_wrapper .popup_campaign_placements .heading .actions .close {
  padding: 5px 5px;
  width: 29px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  cursor: pointer;
}

.popup_wrapper .popup_campaign_placements .info .search {
  display: flex;
  gap: 7px;
  margin-bottom: 8px;
  position: relative;
}

.popup_wrapper .popup_campaign_placements .info .search input[type=text] {
  width: 100%;
  padding: 9px 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fcfcfc;
  font-size: 16px;
}

.popup_wrapper .popup_campaign_placements .info .search input[type=submit] {
  background-color: #eff3ff;
  border: 1px solid #0042FF;
  color: #445a96;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.31px;
  line-height: 19px;
  text-align: center;
  padding: 7px 18px;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  position: absolute;
  cursor: pointer;
}

.popup_wrapper .popup_campaign_placements .info .search input[type=submit]:hover {
  background-color: #003cef;
  color: #fff;
}

.popup_wrapper .popup_campaign_placements .info .placements_selected {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
  flex-wrap: wrap;
  gap: 3px;
}

.popup_wrapper .popup_campaign_placements .info .placements_selected div {
  gap: 10px;
  color: #fff;
  border-radius: 15px;
  background-color: #0042FF;
  display: flex;
  align-items: center;
  padding: 4px 13px;
  padding-bottom: 5px;
  font-size: 14px;
  padding: 3px 11px;
  padding-bottom: 4px;
}

.popup_wrapper .popup_campaign_placements .info .placements_selected div img {
  width: 9px;
}

.popup_wrapper .popup_campaign_placements .info .placements_selected.hidden {
  display: none;
}

.popup_wrapper .popup_campaign_placements .info .results_tab {
  display: flex;
  align-items: center;
  gap: 5px;
}

.popup_wrapper .popup_campaign_placements .info .results_tab .tab {
  padding: 5px 12px;
  background: #fdfdfd;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.popup_wrapper .popup_campaign_placements .info .results_tab .tab:hover {
  background: #f9f9f9;
  border: 1px solid #cccccc;
}

.popup_wrapper .popup_campaign_placements .info .results_tab .tab.active {
  padding: 5px 12px;
  background: #eff3ff;
  border: 1px solid #4067d6;
  border-radius: 3px;
  padding-bottom: 5px;
  color: #002181;
  font-weight: 500;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results {
  position: relative;
  display: none;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result {
  position: relative;
  display: flex;
  align-items: start;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fdfdfd;
  gap: 12px;
  cursor: pointer;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .add_to_list {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px;
  background-color: #0042FF;
  border-radius: 0 3px 0 7px;
  cursor: pointer;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .add_to_list img {
  width: 13px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .add_to_list .add_icon {
  display: block;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .add_to_list .selected_icon {
  display: none;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .icon {
  width: 90px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .about .core .name {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .about .core .desc {
  font-size: 14px;
  letter-spacing: 0.1px;
  line-height: 19px;
  margin-top: 2px;
  color: #3c3c3c;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .about .channel_name {
  font-size: 15px;
  margin-top: -3px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .about .stats {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .about .stats .subs {
  display: block;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #dadada;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .about .stats .subs p:nth-child(1) {
  font-size: 14px;
  margin-bottom: -4px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result .about .stats .subs p:nth-child(2) {
  font-weight: 500;
  color: #282828;
  font-size: 14px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result:hover {
  background: #fbfcff;
  border: 1px solid #628bff;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result:hover .add_to_list_parent {
  background-color: #073dd9;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result.selected {
  background: unset;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result.selected .add_to_list {
  background-color: #104eff;
  border-right: 0;
  border-top: 0;
  border-radius: 0 3px 0 7px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result.selected .add_to_list .add_icon {
  display: none !important;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results .result.selected .add_to_list .selected_icon {
  display: block !important;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper .results.active {
  display: block;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_channels .channel_name {
  display: none;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_bulk_add .channel_name {
  display: none;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result {
  margin-top: 8px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about {
  width: 100%;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .core {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .core .name {
  margin-top: 0;
  font-size: 15px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .core .expand {
  width: 14px;
  margin-top: 3px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results {
  display: flex;
  width: 100%;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .sub_result {
  position: relative;
  width: calc(50% - 4px);
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: start;
  gap: 10px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .sub_result .icon {
  width: 40px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .sub_result .open_outside {
  bottom: 0;
  border: 1px solid #e1e1e1;
  position: absolute;
  right: 0;
  padding: 7px;
  border-radius: 7px 0px 4px 0px;
  cursor: pointer;
  border-right: 0;
  border-bottom: 0;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .sub_result.selected .add_to_list {
  background-color: #379004;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .about .core {
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 0;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .about .core .name {
  line-height: 15px;
  margin-top: 2px;
  margin-right: 27px;
  align-items: start;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #202020;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .about .core .name img {
  margin-top: 4px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .about .core .channel_name {
  margin-top: 3px;
  font-size: 13px;
  color: #4f4f4f;
  width: 100%;
  margin-top: -1px;
  color: #5c5c5c;
  font-size: 12px;
  text-transform: capitalize;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .about .core .channel_name b {
  font-weight: 500;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .sub_result:hover {
  background: #fff;
  border: 1px solid #628bff;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .sub_result:hover .add_to_list {
  background-color: #073dd9;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result:nth-child(1) {
  margin-top: 16px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_bulk_add .textarea_wrapper {
  margin-top: 15px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_bulk_add .textarea_wrapper textarea {
  width: 100%;
  padding: 8px 14px;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  font-size: 15px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_bulk_add input {
  background-color: #0042FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.21px;
  line-height: 19px;
  text-align: center;
  padding: 8px 17px;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 3px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_bulk_add .explainer {
  padding: 12px 15px;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  margin-top: 20px;
  line-height: 18px;
  font-size: 14px;
  margin-bottom: -10px;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_bulk_add .explainer p:nth-child(1) {
  margin-top: -3px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #1e1e1e;
}

.popup_wrapper .popup_campaign_placements .info .results_wrapper #results_bulk_add .explainer p:nth-child(2) {
  line-height: 18px;
}

.popup_wrapper .popup_campaign_placements .info #my_placements_results_loader {
  width: 100%;
  margin-left: auto;
}

.popup_wrapper .popup_campaign_placements .info #my_placements_results_loader .progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: #bbcdff;
  border-radius: 2px;
  margin: .5rem 0 1rem;
  overflow: hidden;
}

.popup_wrapper .popup_campaign_placements .info #my_placements_results_loader .progress .indeterminate {
  background-color: #0042FF;
}

.popup_wrapper .popup_campaign_placements .info #my_placements_results_loader .progress .indeterminate:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.popup_wrapper .popup_campaign_placements .info #my_placements_results_loader .progress .indeterminate:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}

.popup_wrapper .popup_campaign_placements .info #my_placements_results_loader.hidden {
  display: none;
}

.popup_wrapper .popup_campaign_placements .info .empty_note {
  padding: 12px 15px;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  margin-top: 20px;
  line-height: 18px;
  font-size: 14px;
}

.popup_wrapper .popup_campaign.active {
  display: block;
}

.popup_wrapper_budget .popup_budget {
  padding: 0;
  max-width: 400px;
}

.popup_wrapper_budget .popup_budget .heading {
  padding: 15px;
  /* display: flex; */
  /* align-items: center; */
  border-bottom: 1px solid #ececec;
  padding-bottom: 13px;
}

.popup_wrapper_budget .popup_budget .heading p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.17px;
  line-height: 22px;
  margin: 0;
}

.popup_wrapper_budget .popup_budget .heading p img {
  margin-top: 1px;
  cursor: pointer;
}

.popup_wrapper_budget .popup_budget .info {
  padding: 14px;
  padding-top: 10px;
}

.popup_wrapper_budget .popup_budget .info .input_wrap {
  position: relative;
}

.popup_wrapper_budget .popup_budget .info .input_wrap input[type=number] {
  width: 100%;
  color: #3A3A3A;
  font-family: "Founders Grotesk";
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 24px;
  border: 0.5px solid #BCBCBC;
  border-radius: 3px;
  background-color: #FAFAFA;
  padding: 11px 17px;
  padding-left: 30px;
}

.popup_wrapper_budget .popup_budget .info .input_wrap p {
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
}

.popup_wrapper_budget .popup_budget .info .input_wrap .price_down {
  position: absolute;
  right: 145px;
  display: flex;
  transform: translateY(50%);
  top: 0;
  gap: 4px;
  color: #814040;
  font-family: "Founders Grotesk";
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 24px;
}

.popup_wrapper_budget .popup_budget .info .input_wrap .price_down img {
  margin-top: 2px;
}

.popup_wrapper_budget .popup_budget .info .input_wrap input[type=submit], .popup_wrapper_budget .popup_budget .info .input_wrap button {
  position: absolute;
  border-radius: 2px;
  background-color: #244FF2;
  right: 4px;
  top: 50%;
  color: #FFFFFF;
  font-family: "Founders Grotesk";
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 20px;
  text-align: center;
  transform: translateY(-50%);
  padding: 9px 14px;
  cursor: pointer;
  margin: 0;
}

.popup_wrapper_budget .popup_budget .info .peformance .name {
  margin-top: 13px;
}

.popup_wrapper_budget .popup_budget .info .peformance .stats {
  margin-top: 5px;
}

.popup_wrapper_budget .popup_budget .info .peformance .stats .stat {
  border: 1.05px solid #ececec;
  border-radius: 3px;
  padding: 8px 12px;
  background-color: #f9f9f9;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.popup_wrapper_budget .popup_budget .info .peformance .stats .stat p:nth-child(1) {
  opacity: 0.9;
  color: #2A2A2A;
  font-family: "Founders Grotesk";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 22px;
  color: #000;
}

.popup_wrapper_budget .popup_budget .info .peformance .stats .stat p:nth-child(2) {
  color: #000000;
  font-family: "Founders Grotesk";
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 29px;
  text-align: right;
  color: #000;
  font-weight: 500;
}

.popup_wrapper_budget .popup_budget .info .peformance .stats .stat:last-child {
  margin-bottom: 0px;
}

.active {
  display: flex;
}

.filter_campaign_status_wrap .select-wrapper .dropdown-content, .filter_campaign_status_wrap .dropdown-content .dropdown-content {
  top: 40px !important;
  display: block;
}

.filter_campaign_status_wrap .select-wrapper .active, .filter_campaign_status_wrap .dropdown-content .active {
  display: flex;
  flex-wrap: wrap;
}

.dropdown-content.active {
  display: block;
}

@media only screen and (max-width: 550px) {
  .modal-full-page {
    height: 94% !important;
    top: 10px !important;
  }
}

@media only screen and (max-width: 600px) {
  .s-no-padding {
    padding: 0 !important;
  }
  .modal {
    width: 96% !important;
  }
  #modal_campaign_mass_tags .modal-footer {
    height: auto;
  }
}

@media only screen and (max-width: 780px) {
  .settings.referrals .content .block.head_block .bottom p {
    margin-bottom: 0;
  }
  .settings .content .top {
    margin: 0;
  }
  #campaignsListPage .card-body .side:nth-child(1) {
    width: 100%;
    justify-content: space-between;
  }
  #campaignsListPage .card-body .side:nth-child(2) {
    display: none;
  }
  nav.header .channels {
    display: none;
  }
  .navbar-fixed .header .container .brand-logo img {
    width: 137px;
  }
  .navbar-fixed .header {
    box-shadow: none !important;
  }
  nav.header .side:nth-child(1) .brand-logo {
    margin: 0;
  }
  .navbar-fixed .header .container .mobileMenu .mobileMenu__burger i {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 8px;
    height: 100%;
  }
  #page-container #campaignsListPage {
    padding-top: 0;
  }
  .title-header, .s-title-header {
    padding-bottom: 0;
  }
  .all_campaigns .campaign .row:nth-child(1) {
    gap: 14px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(1) {
    font-size: 13px;
    margin-bottom: -2px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(2) {
    font-size: 22px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .status {
    display: none;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .controll .edit {
    display: none;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block {
    width: 490px;
  }
  .all_campaigns .campaign {
    padding: 0;
  }
  .all_campaigns .campaign .row:nth-child(1) {
    gap: 14px;
    align-items: stretch;
  }
  .all_campaigns .campaign .row:nth-child(1) .image_wrapper {
    width: 150px;
    height: unset;
  }
  .all_campaigns .campaign .row:nth-child(1) .image_wrapper img {
    border-radius: 4px 0 0 0;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper {
    width: calc(100% - 150px);
    margin-top: 10px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head {
    margin-right: 10px;
    margin-right: 10px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) {
    width: calc(100% - 40px);
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(1) {
    font-size: 13px;
    margin-bottom: -3px;
    margin-bottom: 2px;
    font-size: 12px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(2) {
    font-size: 24px;
    line-height: 20px;
    font-size: 17px;
    text-overflow: unset;
    white-space: normal;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) {
    width: 40px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .data {
    display: none;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block {
    width: 490px;
  }
  .all_campaigns .campaign .data-mobile {
    display: flex;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    border-top: 1px solid #F0F0F0;
    padding-top: 0;
  }
  .all_campaigns .campaign .data-mobile .column {
    border-right: 1px solid #F0F0F0;
    height: 100%;
    padding-top: 10px;
    width: 30%;
    padding-bottom: 8px;
  }
  .all_campaigns .campaign .data-mobile .column p:nth-child(1) {
    font-size: 20px;
    font-weight: 500;
    line-height: 18px;
    margin: 0;
  }
  .all_campaigns .campaign .data-mobile .column p:nth-child(2) {
    font-size: 15px;
    font-weight: 300;
    margin: 0;
  }
  .all_campaigns .campaign .data-mobile .column:nth-child(3) {
    border-right: unset;
  }
  .add_new div {
    padding: 35px;
  }
  .campaign-bottom-panel button {
    width: 100%;
    border-radius: 20px;
  }
}

@media only screen and (min-width: 993px) {
  .l-side-padding {
    padding: 0 1.75rem !important;
  }
}

@media only screen and (max-width: 1180px) {
  /* New Campaign */
  .new-campaign-page header .wrapper {
    width: 95%;
  }
  .new-campaign-page main {
    width: 95%;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(1) .input_wrap form input {
    width: 550px;
  }
  #campaignAddFundsContent #_scheduleEndDateField {
    margin-bottom: -10px;
  }
  #campaignAddFundsContent h5.waves-effect.waves-light.font-14 {
    display: none;
  }
  #campaignAddFundsContent .row:last-child .col {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  #campaignAddFundsContent .row:last-child .col #closePaymentModal {
    width: 100%;
    margin: 0;
  }
}

@media only screen and (max-width: 1040px) {
  /* New Campaign Step 2 */
  .new-campaign-page {
    width: 100vw;
    overflow-x: hidden;
  }
  .new-campaign-page .new-campaign .step-3 {
    gap: 20px;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap {
    width: 510px;
    padding: 0 20px;
  }
  .new-campaign-page .new-campaign .step-3 .summary {
    width: 430px;
    padding: 0 30px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper {
    width: 370px;
  }
  .new-campaign-page .show_preview.l-tablet {
    display: block;
    position: fixed;
    right: -9px;
    transform: rotate(90deg) translateY(-100%);
    padding: 7px 10px;
    padding-bottom: 7px;
    padding-left: 14px;
    z-index: 999;
    background: #0042ff;
    color: #fff;
    display: flex;
    font-weight: 500;
    font-size: 14px;
    gap: 7px;
    top: 15%;
    border-radius: 0 0 4px 4px;
    padding: 5px 8px;
    padding-left: 11px;
    font-size: 13px;
    right: -12px;
    top: 40%;
    background: #5480ff;
    right: 0px;
    width: 44px;
    transform: translateY(-100%);
    padding: 5px 7px 1px 8px;
    border-radius: 6px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    background: #0c49fd;
    bottom: 80px;
    top: unset;
    border: 1px solid #4272ff;
  }
  .new-campaign-page .show_preview.l-tablet img {
    margin-top: 2px;
    filter: invert(1);
  }
  .new-campaign-page .preview_popup.l-tablet {
    display: block;
    position: fixed;
    right: 0;
    padding: 0;
    transform: translateY(100%);
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    border: unset;
    bottom: 0;
    top: unset;
    display: flex;
    align-items: end;
    transition-duration: 0.24s;
    opacity: 0;
    pointer-events: none;
  }
  .new-campaign-page .preview_popup.l-tablet .preview {
    max-width: 650px;
    background: #fff;
    height: 100%;
    width: 100%;
    padding: 30px;
    margin-right: 0;
    margin-left: auto;
    border-radius: 10px 10px 0 0;
    padding: 15px;
    padding-top: 11px;
    padding-bottom: 30px;
    height: 100%;
    display: block;
  }
  .new-campaign-page .preview_popup.l-tablet .preview .wrapper .preview_header {
    margin-bottom: 10px;
  }
  .new-campaign-page .preview_popup.l-tablet .preview .wrapper .preview_header p {
    font-size: 18px;
  }
  .new-campaign-page .preview_popup.l-tablet .preview .wrapper .switch_buttons {
    flex-wrap: wrap;
  }
  .new-campaign-page .preview_popup.l-tablet .preview .wrapper .switch_buttons .switch_feed {
    width: 100% !important;
  }
  .new-campaign-page .preview_popup.l-tablet .preview_wrap {
    height: 100%;
    width: 100%;
    height: auto;
    min-height: 550px;
    border-radius: 10px 10px 0 0;
    background: #fff;
  }
  .new-campaign-page .preview_popup.l-tablet .preview_wrapper {
    max-width: 600px;
  }
  .new-campaign-page .preview_popup.l-tablet .preview_back {
    transform: unset;
    border: unset;
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    top: 0;
    left: 0;
    backdrop-filter: blur(3px);
    z-index: -1;
  }
  .new-campaign-page .preview_popup.show {
    transform: translateY(0%);
    opacity: 1;
    pointer-events: all;
  }
  .new-campaign-page .new-campaign .step .step-wrapper .form {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step .step-wrapper .preview {
    display: none;
  }
  /* New Campaign */
  .l-tablet {
    display: block;
  }
  .new-campaign-page.current-step-1 .show_preview.l-tablet {
    display: none;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(1) .input_wrap form input.desktop {
    display: none;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(1) .input_wrap form .l-tablet input {
    width: 350px;
  }
  .new-campaign-page .new-campaign .step-1 .content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px 8px;
    grid-template-areas: ". . . .";
  }
  main {
    margin-top: 18px;
  }
  .settings .sidebar {
    max-width: 250px;
  }
  .settings .block .top {
    gap: 10px;
  }
  .settings .block .top .switch_wrap {
    min-width: 230px;
  }
  .account-settings-page .account-settings {
    gap: 20px;
  }
  .account-settings-page .account-settings .sidebar {
    max-width: 300px;
  }
  .account-settings-page .account-settings .sidebar .sidebar_wrapper {
    margin: 0 auto;
    margin-top: 40px;
  }
  .account-settings-page .account-settings .content {
    width: calc(100% - 300px);
  }
  .account-settings-page .account-settings .content form {
    min-width: 500px;
  }
  .vanilla-calendar {
    z-index: 999999;
  }
  .mobile_reports_filters {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 999;
    width: 100%;
    height: 100%;
    transition-duration: 0.34s;
    transform: translateY(-100%);
    transition-timing-function: ease-in-out;
  }
  .mobile_reports_filters .back {
    height: 100%;
    width: 100vw;
    background: #000000;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition-duration: 0.2s;
  }
  .mobile_reports_filters .c_wrap {
    width: 100%;
    background: #fff;
    border-radius: 0 0 12px 12px;
    border-bottom: 0px solid #0042FF;
  }
  .mobile_reports_filters .c_wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    margin-bottom: 5px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .mobile_reports_filters .c_wrap .top p {
    color: #3E3E3E;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.7px;
    line-height: 26px;
    margin: 0;
  }
  .mobile_reports_filters .c_wrap .top img {
    width: 33px;
  }
  .mobile_reports_filters .c_wrap .bottom {
    padding: 20px;
    padding-top: 17px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 14px;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__inner {
    padding: 0 !important;
    min-height: unset;
    border: unset;
    overflow: visible;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__item {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__item img {
    width: 31px;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__item div {
    color: #292929;
    font-size: 15.14px;
    font-weight: 500;
    letter-spacing: -0.48px;
    line-height: 19px;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices.is-focused {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices.is-focused .choices__list--single {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list--single {
    padding: 6px;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list {
    border-radius: 4px;
    background-color: #FBFDFF;
    border: 1px solid #CCD2D7;
    border-color: #CCD2D7 !important;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list div {
    border: unset;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list--single {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list--dropdown .choices__item--selectable.is-highlighted::after, .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
    display: none !important;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list--dropdown .choices__item--selectable, .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 0 !important;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list--dropdown .choices__item, .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list[aria-expanded] .choices__item {
    padding: 4px 16px 4px 4px !important;
  }
  .mobile_reports_filters .c_wrap .bottom .view_selector .choices__list--dropdown .choices__list {
    padding: 6px;
  }
  .mobile_reports_filters .c_wrap .bottom .admin_button {
    border-radius: 3px;
    background-color: #F4F9FF;
    border: 1px solid #2677E5;
    padding: 9px 15px;
    padding-bottom: 10px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.45px;
    line-height: 22px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    color: #2979E6;
  }
  .mobile_reports_filters .c_wrap .bottom .data_range_wrapper {
    position: relative;
  }
  .mobile_reports_filters .c_wrap .bottom .data_range_wrapper .name {
    color: #6C6C6C;
    font-size: 15px;
    letter-spacing: -0.45px;
    line-height: 17px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 4;
    left: 15px;
    margin: 0;
  }
  .mobile_reports_filters .c_wrap .bottom .data_range_wrapper .name:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 120%;
    transform: translateX(-50%);
    left: 50%;
    z-index: -11;
    top: 50%;
    background: #fbfdff;
  }
  .mobile_reports_filters .c_wrap .bottom .data_range_wrapper input {
    padding: 9px 15px;
    padding-left: 12px;
    color: #292929;
    font-size: 15.14px;
    font-weight: 500;
    letter-spacing: -0.48px;
    line-height: 19px;
    border-radius: 4px;
    background-color: #FBFDFF;
    border: 1px solid #CCD2D7;
    width: 100%;
    cursor: pointer;
    padding: 13px 17px;
    font-size: 16px;
    padding-left: 15px;
    background-color: #fdfdfd;
    margin: 0;
    width: -webkit-fill-available;
    height: unset;
  }
  .mobile_reports_filters .c_wrap .bottom .data_range_wrapper img {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 17px;
  }
  .mobile_reports_filters .c_wrap .bottom .status_choice_wrapper {
    position: relative;
    margin-top: 17px;
  }
  .mobile_reports_filters .c_wrap .bottom .status_choice_wrapper .name {
    color: #6C6C6C;
    font-size: 15px;
    letter-spacing: -0.45px;
    line-height: 17px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 4;
    left: 15px;
    margin: 0;
  }
  .mobile_reports_filters .c_wrap .bottom .status_choice_wrapper .name:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 120%;
    transform: translateX(-50%);
    left: 50%;
    z-index: -11;
    top: 50%;
    background: #fbfdff;
  }
  .mobile_reports_filters .c_wrap .bottom .status_choice_wrapper .choices__inner {
    padding: 6px 17px;
    font-size: 16px;
    padding-left: 11px;
    font-weight: 500;
  }
  .mobile_reports_filters.active {
    transform: unset;
  }
  .mobile_reports_filters.active .back {
    opacity: 0.4;
  }
  .mobile_actions {
    display: flex !important;
  }
  .reports .top .side:nth-child(2) {
    display: none;
  }
  .reports .top .side:nth-child(1) {
    width: 100%;
    justify-content: space-between;
  }
  .reports .top .side:nth-child(1) h1 {
    font-size: 35px;
  }
  .reports .top .view_selector {
    display: none;
  }
  .reports .top .s-tablet.filter-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .reports .top .s-tablet.filter-actions .view {
    border: 1.13px solid #CCD2D7;
    border-radius: 4px;
    background-color: #FFFFFF;
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-right: 8px;
    display: none;
  }
  .reports .top .s-tablet.filter-actions .view img:nth-child(1) {
    width: 28px;
  }
  .reports .top .s-tablet.filter-actions .view img:nth-child(2) {
    width: 12px;
  }
  .reports .top .s-tablet.filter-actions .filter {
    border: 1.13px solid #CCD2D7;
    border-radius: 4px;
    background-color: #FFFFFF;
    padding: 10px;
    padding-top: 11px;
  }
  .reports .top .s-tablet.filter-actions .filter img {
    width: 14px;
    display: block;
  }
  .reports .content {
    overflow: scroll;
  }
  .reports .content table {
    width: 1200px;
  }
  .reports .content table tbody .status_choice_wrapper .choices .choices__inner {
    padding: 4px 5px;
  }
  .reports .content table tbody .status_choice_wrapper .choices .choices__inner .choices__list--single .choices__item {
    font-size: 15px;
  }
  .reports .content table tbody td {
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .reports .content table tbody td:first-child {
    font-size: 15px;
  }
  .mobile_reports_filters.engagement .bottom .choice_wrapper {
    position: relative;
    margin-top: 11px;
  }
  .mobile_reports_filters.engagement .bottom .choice_wrapper .name {
    color: #6C6C6C;
    font-size: 15px;
    letter-spacing: -0.45px;
    line-height: 17px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 4;
    left: 15px;
  }
  .mobile_reports_filters.engagement .bottom .choice_wrapper .name:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 120%;
    transform: translateX(-50%);
    left: 50%;
    z-index: -11;
    top: 50%;
    background: #fbfdff;
  }
  .mobile_reports_filters.engagement .bottom .choice_wrapper select {
    color: #292929;
    font-weight: 500;
    letter-spacing: -0.48px;
    line-height: 19px;
    border-radius: 4px;
    background-color: #FBFDFF;
    border: 1px solid #CCD2D7;
    width: 100%;
    cursor: pointer;
    padding: 13px 17px;
    font-size: 16px;
    padding-left: 11px;
    background-color: #fdfdfd;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .mobile_reports_filters.engagement .bottom .choice_wrapper .rotated {
    transform: rotate(180deg);
  }
  .mobile_reports_filters.engagement .bottom .choice_wrapper img {
    position: absolute;
    right: 15px;
    bottom: 17px;
  }
  .mobile_reports_filters.engagement .bottom .switch_wrap {
    cursor: pointer;
  }
  .mobile_reports_filters.engagement .bottom .switch_wrap .switch {
    display: flex;
    align-items: center;
    position: relative;
    padding: 3px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    width: 100%;
    margin-top: 10px;
    margin-top: 11px;
  }
  .mobile_reports_filters.engagement .bottom .switch_wrap .switch a {
    width: 50%;
  }
  .mobile_reports_filters.engagement .bottom .switch_wrap .switch .option {
    color: #4B4B4B;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.45px;
    line-height: 17px;
    text-align: right;
    padding: 9px 15px;
    padding-bottom: 10px;
    z-index: 9;
    width: 100%;
    text-align: center;
  }
  .mobile_reports_filters.engagement .bottom .switch_wrap .switch .option_selected {
    color: #fff;
    width: 50%;
  }
  .mobile_reports_filters.engagement .bottom .switch_wrap .switch .selection {
    position: absolute;
    border-radius: 3px;
    height: 85%;
    width: 49%;
    left: 3px;
    background: #0042FF;
    transition: left 0.3s ease, width 0.3s ease;
  }
  .mobile_reports_filters.engagement .bottom .core_button {
    border-color: #CCD2D7 !important;
    color: #292929;
    font-weight: 500;
    letter-spacing: -0.48px;
    line-height: 19px;
    border-radius: 4px;
    background-color: #FBFDFF;
    border: 1px solid #CCD2D7;
    width: 100%;
    cursor: pointer;
    padding: 13px 17px;
    font-size: 16px;
    padding-left: 16px;
    background-color: #fdfdfd;
    -webkit-appearance: none;
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .mobile_reports_filters.engagement .bottom .core_button .filter_menu {
    display: none;
    width: 100%;
  }
  .mobile_reports_filters.engagement .bottom .core_button .filter_menu .filter_menu_wrapper .dropdown-content- {
    text-align: left;
    margin-bottom: 0;
    margin: 0;
  }
  .mobile_reports_filters.engagement .bottom .core_button .filter_menu .filter_menu_wrapper .dropdown-content- li {
    padding: 9px 12px;
    margin-left: -16px;
    width: calc(100% + 32px);
  }
  .mobile_reports_filters.engagement .bottom .core_button .filter_menu .filter_menu_wrapper .dropdown-content- li i {
    font-size: 17px;
    vertical-align: text-bottom;
    margin-right: 4px;
  }
  .mobile_reports_filters.engagement .bottom .core_button .filter_menu .filter_menu_wrapper .dropdown-content- li:first-child {
    border-top: 1px solid #dedede;
  }
  .mobile_reports_filters.engagement .bottom .core_button .filter_menu .filter_menu_wrapper .dropdown-content- li:nth-child(2n) {
    background: #f1f2f4;
  }
  .mobile_reports_filters.engagement .bottom .core_button .input_view {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 13px;
  }
  .reports.engagement .top .side:nth-child(1) .switch_wrap {
    display: none;
  }
  .reports.engagement .top .side:nth-child(2) {
    display: none;
  }
  .reports.engagement .top .s-tablet.filter-actions .filter {
    background-color: #0042FF;
    border: unset;
    padding: 10px 12px;
    padding-top: 11px;
  }
  .reports.engagement .top .s-tablet.filter-actions .filter img {
    width: 12px;
  }
  .reports.engagement .content table tbody td {
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .reports.engagement .table_overview td:first-child {
    min-width: 110px;
  }
}

@media only screen and (max-width: 920px) {
  .new-campaign-page .new-campaign .step-3 {
    flex-wrap: wrap;
  }
  .new-campaign-page .new-campaign .step-3 .payment {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap {
    margin-top: 10px;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form {
    padding: 15px 16px;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap p {
    font-size: 15px;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap p input {
    font-size: 16px;
    padding: 12px 16px;
  }
  .new-campaign-page .new-campaign .step-3 .summary {
    width: 100%;
    background: unset;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper {
    width: 470px;
    padding: 0 20px;
    padding-top: 30px;
    max-width: unset;
    padding-bottom: 10px;
    padding-bottom: 30px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info {
    margin-bottom: 12px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block {
    padding: 14px 15px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row {
    margin-bottom: 8px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2),
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2),
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2) {
    padding-right: 10px;
    padding-left: 25px;
    transform: translateX(10px);
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2),
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2),
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2) {
    position: relative;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2) img,
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2) img,
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2) img {
    height: 20px;
    width: 20px;
    border-radius: 10.5px;
    background-color: #777777;
    padding: 4px;
    display: block;
    position: absolute;
    left: -1px;
    top: 0.5px;
    z-index: 3;
    cursor: pointer;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2) p,
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2) p,
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2) p {
    margin-bottom: 0px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #wallet_summar_row .column:nth-child(2) p:after,
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #promo_summar_row .column:nth-child(2) p:after,
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block #budget_summar_row .column:nth-child(2) p:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 115%;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #DFDFDF;
    border-radius: 14px;
    background-color: #F9F9F9;
    padding: 2px;
    padding-right: 9px;
    top: 52%;
    left: 47%;
    z-index: -1;
    transform: translate(-50%, -50%);
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row:last-child {
    margin-bottom: 0;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .summary_block .summar_row.show {
    display: flex;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row {
    font-size: 15px;
    margin-top: 4px;
    margin-bottom: 7px;
    padding: 10px 14px;
    padding-bottom: 14px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=text] {
    font-size: 17px;
    padding: 14px 15px;
    padding-top: 13px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row .input_wrap input[type=button] {
    font-size: 17px;
    padding: 10px 14px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .top .summary_info .promo_row p {
    font-size: 15px;
    margin-top: 4px;
    margin-bottom: 7px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper .bottom {
    display: none;
  }
}

@media only screen and (max-width: 845px) {
  .preview .wrapper .preview_search_mobile {
    height: 345px;
  }
  .preview .wrapper .preview_mobile {
    height: 345px;
  }
  .modal.modal-fixed-footer .modal-content {
    padding: 20px !important;
  }
  .modal .row #place_search_btn {
    right: 3px;
  }
  .modal .row .collapsible ._collection {
    margin: 0 !important;
  }
  .paymentHistoryPage .col {
    padding: 0;
  }
  .paypal_block .img_wrap, .venmo_block .img_wrap, .gpay_block .img_wrap, .apay_block .img_wrap, .saved_block .img_wrap {
    padding: 76px 0 !important;
  }
  #table_placements tbody tr td:nth-child(2) .statistics {
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 4px;
  }
  .new-campaign-page .step-3 {
    flex-wrap: wrap;
  }
  .new-campaign-page .step-3 .payment {
    width: 100%;
  }
  .new-campaign-page .step-3 .payment .payment_wrap {
    width: 100%;
    margin-top: 15px;
  }
  .new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row .input_wrap {
    width: calc(50% - 4px);
  }
  .new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row:nth-child(2) .input_wrap {
    width: 100%;
  }
  .new-campaign-page .step-3 .payment .payment_wrap .block.billing-information .form .row:nth-child(3) .input_wrap {
    width: 100%;
  }
  .new-campaign-page .step-3 .payment .block_content .block p {
    margin-bottom: 10px;
  }
  .new-campaign-page .step-3 .summary {
    background: unset;
    width: 100%;
    border: none;
  }
  .new-campaign-page .step-3 .summary .summary_wrapper {
    padding: 0;
  }
  .new-campaign-page .step-3 .summary .summary_wrapper .bottom {
    display: none;
  }
  .new-campaign-page .card-body #table_placements tbody tr td:nth-child(2) .statistics {
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 4px;
  }
  .new-campaign-page .card-body #table_placements tbody tr td:nth-child(2) .title {
    margin-top: 10px;
  }
  .new-campaign-page .btn-dual {
    flex-wrap: wrap;
  }
  .new-campaign-page #page-container {
    margin: 0;
    width: 100%;
  }
  .new-campaign-page #page-container #configure {
    padding: 0 !important;
  }
  .new-campaign-page .campaignsCategories {
    margin: 0 !important;
  }
  .new-campaign-page #targeting {
    padding: 0;
  }
  .new-campaign-page #budget {
    padding: 0;
  }
  .new-campaign-page #budget .lifetime-budget .col.s12.m12 input {
    width: -webkit-fill-available;
  }
  .new-campaign-page #budget .lifetime-budget .col.s12.m12.estimate {
    margin: 0;
    width: 100%;
    margin-top: 0;
  }
  .new-campaign-page #budget .lifetime-budget .col.s12.m12.estimate #viewsEstimate {
    margin-left: 0 !important;
    margin-top: -3px;
    display: block;
    width: 100%;
  }
  .new-campaign-page #budget .lifetime-budget .col.s12.m12.estimate #subsEstimate {
    display: block;
    width: 100%;
  }
  .new-campaign-page #campaignHaveBeenSaved .card-panel {
    background-color: #fff !important;
    color: #000 !important;
    padding: 30px;
    font-size: 16px;
  }
  .new-campaign-page header .side.mobile {
    display: none;
  }
  .new-campaign-page header .side.mobile .icon_wrap {
    display: none;
  }
  .new-campaign-page header .side.mobile .menu_icon {
    display: none;
  }
  .new-campaign-page header .side.mobile .return {
    display: block;
  }
  .new-campaign-page header .wrapper .side:nth-child(1) .progress {
    display: none;
  }
  .new-campaign-page header .status_heading {
    width: 100%;
    padding: 8px 0;
    background: #F9F9F9;
    position: relative;
  }
  .new-campaign-page header .status_heading .step {
    width: 15px;
    height: 15px;
    padding: 5px;
    border-radius: 50px;
    border: 4px solid #919FD5;
    background-color: #fff;
    z-index: 3;
    position: relative;
  }
  .new-campaign-page header .status_heading .step.active {
    width: 15px;
    height: 15px;
    padding: 5px;
    border-radius: 50px;
    border: 4px solid #234EF2;
    background-color: #fff;
    box-shadow: 0 0 5px 1px rgba(35, 78, 242, 0.53);
    z-index: 3;
    position: relative;
  }
  .new-campaign-page header .status_heading .step_progress {
    background-color: #D0D5E6;
    width: 100%;
    position: absolute;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
  }
  .new-campaign-page header .status_heading .step_progress_active {
    background-color: #234EF2;
    width: 15%;
    position: absolute;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
  }
  .new-campaign-page header .status_heading .status_heading_wrapper {
    position: relative;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .new-campaign-page header .status_heading .status_heading_wrapper.step1 .step_progress_active {
    width: 38%;
  }
  .new-campaign-page header .status_heading .status_heading_wrapper.step2 .step_progress_active {
    width: 62%;
  }
  .new-campaign-page header .status_heading .status_heading_wrapper.step3 .step_progress_active {
    width: 75%;
  }
  .new-campaign-page header .status_heading .status_heading_wrapper.step4 .step_progress_active {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-1 .top h1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .new-campaign-page .new-campaign .step-1 .top h1 img {
    width: 37px;
    display: none;
    padding: 11px;
    border: 1.13px solid #CCD2D7;
    border-radius: 4px;
    background-color: #FFFFFF;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap {
    flex-wrap: wrap;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper {
    margin-top: 15px;
  }
  .new-campaign-page .new-campaign .step-1 .content {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px 8px;
    grid-template-areas: ". . .";
  }
  .new-campaign-page.current-step-1 header .side.mobile {
    display: none;
  }
  .new-campaign-page.current-step-1 header .side.mobile .icon_wrap {
    display: block;
  }
  .new-campaign-page.current-step-1 header .side.mobile .menu_icon {
    display: none;
  }
  .new-campaign-page.current-step-1 header .side.mobile .return {
    display: none;
  }
  .updateAutoPromote {
    width: 100%;
  }
  .container .settings.auto_promote {
    padding-top: 10px;
  }
  .container .settings.auto_promote .auto-promotion-video-step-1 {
    flex-wrap: wrap;
  }
  .container .settings.auto_promote .auto-promotion-video-step-1-3 {
    width: 100%;
  }
  .container .settings.auto_promote .auto-promotion-budget .card-body.bottom {
    flex-wrap: wrap;
    margin-top: 0;
  }
  .container .settings.auto_promote .auto-promotion-budget .card-body.bottom .col {
    width: 100%;
  }
  .container .settings.auto_promote .content .title-header h5 {
    font-size: 22px;
  }
  #auto-promotion-question {
    width: 90%;
  }
  #auto-promotion-question .row .col.s12 {
    padding: 0;
  }
  .settings.auto-promote {
    gap: 0;
  }
  .settings.auto-promote .content .buttons_steps {
    margin-bottom: 17px;
    margin-bottom: 26px;
  }
  .settings.auto-promote .content h2.s-tablet {
    color: #000000;
    font-family: "Founders Grotesk";
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -1.12px;
    line-height: 36px;
    width: 250px;
    margin-bottom: 14px;
    display: block;
    margin-bottom: 16px;
    margin-left: 4px;
  }
  .settings.auto-promote .content .block {
    padding: 18px 13px;
  }
  .settings.auto-promote .step .block.select_div .bottom .select_divs .select {
    padding: 14px 11px;
    padding-bottom: 15px;
    gap: 5px;
  }
  .settings.auto-promote .step .block.select_div .bottom .select_divs .select.active {
    padding: 14px 11px;
    padding-bottom: 15px;
    gap: 5px;
  }
  .settings.auto-promote .next_button button {
    width: 100%;
    padding: 15px;
    font-size: 19px;
    margin-top: 12px;
    margin-bottom: 40px;
    padding-left: 19px;
    text-align: left;
    justify-content: space-between;
  }
  .settings.payment_history {
    margin-top: 0;
    gap: 0;
  }
  .settings.payment_history .content {
    max-width: unset;
  }
  .settings.payment_history .content .top {
    width: -moz-fit-content;
    width: fit-content;
    gap: 0;
  }
  .settings.payment_history .content .top .top_text {
    background: unset;
    padding: 0;
    font-size: 40px;
    width: 100%;
    margin-bottom: 7px;
    color: #000;
    margin-bottom: 7px;
    font-weight: 600;
  }
  .settings.payment_history .content .top .stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 7px;
    grid-template-areas: ". ." ". .";
    height: unset;
  }
  .settings.payment_history .content .top .stats .stat {
    border-radius: 3px;
  }
  .settings.payment_history .content .top .stats .stat p {
    font-size: 15px;
  }
  .settings.payment_history .content .top .stats .stat h3 {
    font-size: 24px;
    margin-top: 3px;
    margin-bottom: -2px;
  }
  .settings.payment_history .content .table_wrapper {
    overflow-x: scroll;
    padding: 0;
  }
  .settings {
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
  }
  .settings .mobile_titles {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .settings .mobile_titles p {
    display: none;
    margin-top: 18px;
    font-size: 28px;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -1.21px;
    line-height: 35px;
    color: #000;
    margin-left: 9px;
  }
  .settings.referrals .mobile_titles .referrals_title {
    display: block;
    margin: 0;
  }
  .settings.manage_funds .mobile_titles .manage_funds_title {
    display: block;
    margin: 0;
  }
  .settings.manage_funds .row .col {
    padding: 0;
  }
  .settings.manage_funds .input-field.col label {
    left: 0;
  }
  .settings.manage_funds #braintreeForm .row .col.s6 {
    width: 100% !important;
  }
  .settings.manage_funds .block form button {
    padding: 13px;
    font-size: 18px;
  }
  .settings.manage_funds .option_2_payment.selected .payment_wrap {
    flex-wrap: wrap;
  }
  .settings.manage_funds .option_2_payment.selected .payment_wrap .side {
    width: 100%;
  }
  .settings.manage_funds .option_2_payment.selected .payment_wrap .side .payment_methods_wrap .payment_method {
    padding: 12px;
    padding-right: 14px;
  }
  .settings.manage_funds .option_2_payment.selected .payment_wrap .side .payment_methods_wrap .payment_method p {
    font-size: 17px;
  }
  .settings.manage_funds .option_2_payment.selected .payment_wrap .side .payment_methods_wrap .payment_method .checkmark {
    width: 19px;
  }
  .settings.manage_funds .option_2_payment.selected .payment_wrap form button {
    padding: 13px;
    font-size: 18px;
  }
  .settings.my-channels {
    position: relative;
  }
  .settings.my-channels .mobile_titles .my_channels_title {
    display: block;
    margin: 0;
  }
  .settings.my-channels .content .channels_block .bottom table tbody tr td:first-child p:nth-child(2) {
    display: block;
  }
  .settings.my-channels .content .channels_block .bottom table tbody tr td:first-child p:nth-child(3) {
    display: none;
    margin-top: 7px;
  }
  .settings.my-channels .content .block {
    background: unset;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding: 0;
  }
  .settings.my-channels .content .channels_block .bottom table {
    margin-top: 0;
  }
  .settings.my-channels .content .channels_block .bottom table thead {
    display: none;
  }
  .settings.my-channels .content .top {
    display: block;
  }
  .settings.my-channels .content .top h2 {
    display: none;
  }
  .settings.my-channels .content .top p {
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    right: 0;
    top: 5px;
  }
  .settings.my-channels .content .bottom table {
    display: block;
  }
  .settings.my-channels .content .bottom table tbody {
    display: block;
  }
  .settings.my-channels .content .bottom table tbody tr {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #e8e8e8;
  }
  .settings.my-channels .content .bottom table tbody tr td:nth-child(1) {
    width: 100%;
    border: unset !important;
    padding-bottom: 3px;
    padding-top: 13px;
  }
  .settings.my-channels .content .bottom table tbody tr td:nth-child(1) p:nth-child(1) {
    margin-bottom: 5px !important;
    margin-top: 6px !important;
    font-size: 21px !important;
  }
  .settings.my-channels .content .bottom table tbody tr td:nth-child(1) p:nth-child(2) {
    font-size: 15px !important;
  }
  .settings.my-channels .content .bottom table tbody tr td:nth-child(2) {
    border: unset !important;
    width: 50%;
    padding-left: 15px;
    padding-right: 7px;
    padding-bottom: 15px;
  }
  .settings.my-channels .content .bottom table tbody tr td:nth-child(2) p {
    width: 100% !important;
    font-size: 17px !important;
    padding: 10px !important;
    border-radius: 2px !important;
    border-width: 0.5px !important;
  }
  .settings.my-channels .content .bottom table tbody tr td:nth-child(3) {
    width: 50%;
    padding-right: 15px;
    padding-left: 7px;
    padding-bottom: 15px;
    border: unset !important;
  }
  .settings.my-channels .content .bottom table tbody tr td:nth-child(3) a p {
    width: 100% !important;
    font-size: 17px !important;
    padding: 10px !important;
    border-radius: 2px !important;
    border-width: 0.7px !important;
  }
  .settings.my-channels .content .channels_block .bottom table tbody tr:nth-child(even) {
    background: #fff;
  }
  .settings.my-channels .content .channels_block .bottom table tbody tr td:last-child p {
    width: 100%;
    padding: 9px;
    font-size: 17px;
  }
  .auto_promote .content .modal-content {
    overflow-y: scroll;
    height: 800px;
    padding: 19px;
  }
  .auto_promote .content .modal-content .answer {
    font-size: 16px;
    line-height: 22px;
  }
  .general-settings-page main {
    margin: 18px 0;
    width: 100%;
  }
  .account-settings-page #page-container {
    margin: 0 auto !important;
    margin-top: 20px !important;
  }
  .account-settings-page .content form .row p {
    font-size: 15px;
  }
  .account-settings-page .content form .row input {
    font-size: 15px;
  }
  .settings {
    padding-top: 0;
    margin-top: -8px;
  }
  .settings .content {
    width: 100%;
    max-width: 600px;
  }
  .settings .content .top {
    flex-wrap: wrap;
  }
  .settings .content .top #add_funds_heading {
    font-size: 21px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-top: 0;
  }
  .settings .content .top .switch_wrap {
    width: 100%;
    border-radius: 4px;
    max-width: 450px;
  }
  .settings .content .top .switch_wrap .switch {
    border-radius: 4px;
    width: 100%;
  }
  .settings .content .top .switch_wrap .switch .option {
    width: 50%;
    text-align: center;
    font-size: 15px;
    padding: 9px;
  }
  .settings .content .top .switch_wrap .switch .selection {
    border-radius: 4px;
  }
  .settings .content .braintreeForm {
    margin-bottom: 30px;
  }
  .settings .content .block .row:last-child {
    margin: 0;
  }
  .settings .content #confirmPayment {
    letter-spacing: 0 !important;
    margin-top: 0px !important;
    width: 100%;
  }
  .settings .block form .form .field_wrap.amount .input_wrap .prediction {
    gap: 3px;
    justify-content: space-between;
    padding: 9px 9px;
  }
  .settings .block form .form .field_wrap input, .settings .block form .form .field_wrap select {
    font-size: 16px;
  }
  .settings .block {
    padding: 15px 14px;
    padding-bottom: 20px;
  }
  .settings .block form button {
    width: 100%;
  }
  .settings .block.input_block .row .info {
    flex-wrap: wrap;
  }
  .settings .block.input_block .row .info h3 {
    font-size: 18px;
  }
  .settings .block.input_block .row .input .input_wrap input {
    padding: 16px 18px;
    padding-left: 17px;
  }
  .settings .block.input_block .row .input .input_wrap button {
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 18px;
  }
  .settings .block.input_block .row .input .input_wrap .copy {
    padding-right: 0;
  }
  .settings .sidebar {
    display: none;
  }
  .account-settings-page .container {
    margin: 0 auto;
    margin-top: 20px;
  }
  .account-settings-page .account-settings .sidebar {
    display: none;
  }
  .account-settings-page .account-settings .content {
    width: 100%;
    margin-top: 0;
  }
  .account-settings-page .account-settings .content form {
    min-width: unset;
    padding: 14px 16px;
    margin-bottom: 20px;
    width: 100%;
  }
  .account-settings-page .account-settings .content form .explainer {
    line-height: 20px;
  }
  .account-settings-page .account-settings .content form .checkmark_wrapper {
    margin-top: 12px;
    line-height: 19px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: start;
    gap: 5px;
    margin-bottom: 10px;
  }
  .account-settings-page .account-settings .content form input[type=checkbox] {
    margin-right: 5px;
    width: 20px;
    height: 20px;
    margin-top: 4px;
  }
  .account-settings-page .account-settings .content form label {
    width: calc(100% - 20px);
  }
  .account-settings-page .account-settings .content form.l-mobile {
    display: block;
  }
  .account-settings-page .account-settings .content form.l-mobile .explainer {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .account-settings-page .account-settings .content form.l-mobile .checkmark_wrapper {
    margin-top: 15px;
  }
  .account-settings-page .account-settings .content form.l-mobile .checkmark_wrapper label {
    line-height: 16px;
    letter-spacing: -0.1px;
    padding-left: 30px;
    font-size: 15px;
    color: #757575;
  }
  .account-settings-page .account-settings .content form.l-mobile:last-child .save_button button {
    background: #9D3C3C;
    color: #ffffff80;
    font-size: 16px;
    border: none;
    margin-top: 20px;
  }
  .mobile_menu {
    display: block;
    position: fixed;
    top: 0;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    transition-duration: 0.34s;
    transform: translateY(-100%);
    transition-timing-function: ease-in-out;
  }
  .mobile_menu .back {
    height: 100vh;
    width: 100vw;
    background: #000000;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition-duration: 0.2s;
  }
  .mobile_menu .c_wrap {
    width: 100%;
    background: #fff;
    background: #fff;
    border-radius: 0 0 20px 20px;
    border-bottom: 0px solid #0042FF;
  }
  .mobile_menu .top {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 20px;
    padding-right: 20px;
    margin-bottom: 5px;
  }
  .mobile_menu .top img {
    width: 33px;
  }
  .mobile_menu .bottom {
    padding-top: 20px;
  }
  .mobile_menu .bottom ul {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile_menu .bottom ul li {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.4px;
  }
  .mobile_menu .bottom ul li span {
    font-weight: 300;
  }
  .mobile_menu .bottom ul:last-child {
    margin-bottom: 0;
  }
  .mobile_menu .bottom .logout {
    padding: 20px;
    padding-top: 16px;
    border: 1px solid #ebebeb;
    margin-top: 30px;
    background: #fcfcfc;
    border-radius: 0 0 20px 20px;
    background: #fcfcfc;
    padding: 14px 20px;
    padding-bottom: 18px;
  }
  .mobile_menu .bottom .logout p:nth-child(1) {
    font-size: 19px;
    margin-bottom: -5px;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .mobile_menu .bottom .logout p:nth-child(1) img {
    width: 17px;
    height: auto;
    transform: rotate(90deg);
    margin-top: 3px;
  }
  .mobile_menu .bottom .logout p:nth-child(2) {
    font-size: 16px;
    color: #606060;
  }
  .mobile_menu.active {
    transform: unset;
  }
  .mobile_menu.active .back {
    opacity: 0.4;
  }
  .mobile_channels {
    display: block;
    position: fixed;
    top: 0;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 999;
    width: 100%;
    height: 100%;
    transition-duration: 0.34s;
    transform: translateY(-100%);
    transition-timing-function: ease-in-out;
  }
  .mobile_channels .back {
    height: 100%;
    width: 100vw;
    background: #000000;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition-duration: 0.2s;
  }
  .mobile_channels .c_wrap {
    width: 100%;
    background: #fff;
    background: #fff;
    border-radius: 0 0 20px 20px;
    border-bottom: 0px solid #0042FF;
  }
  .mobile_channels .top {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 20px;
    padding-right: 20px;
    margin-bottom: 5px;
  }
  .mobile_channels .top img {
    width: 33px;
  }
  .mobile_channels .bottom {
    padding-top: 20px;
  }
  .mobile_channels .bottom ul {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 4px;
    border-radius: 22px;
    gap: 4px;
  }
  .mobile_channels .bottom ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    width: 100%;
    padding: 4px 6px;
    border: 1px solid #e5e5e5;
    border-radius: 40px;
    cursor: pointer;
  }
  .mobile_channels .bottom ul li img {
    width: 50px;
    margin-left: 0;
  }
  .mobile_channels .bottom ul li .data {
    letter-spacing: 0px;
  }
  .mobile_channels .bottom ul li .data p:nth-child(1) {
    font-size: 19px;
    font-weight: 500;
  }
  .mobile_channels .bottom ul li .data p:nth-child(2) {
    font-size: 12px;
    margin-top: -4px;
    font-weight: 400;
    color: #717171;
    font-size: 16px;
    margin-bottom: 3px;
    margin-top: -7px;
  }
  .mobile_channels .bottom ul li:hover {
    background: #f9f9f9;
    border: 1px solid #c3c3c3;
    text-decoration: unset;
  }
  .mobile_channels .bottom ul li.active {
    background-color: #234EF2;
    border-radius: 40px;
    padding: 4px 6px;
    color: #fff;
    border: 1px solid #234EF2;
  }
  .mobile_channels .bottom ul li.active .data p:nth-child(2) {
    color: rgba(255, 255, 255, 0.7);
  }
  .mobile_channels .bottom ul li.add_new_channel .img_wrap {
    background: #0042FF;
    border-radius: 50px;
    padding: 8px;
    padding: 14px;
  }
  .mobile_channels .bottom ul li.add_new_channel .img_wrap img {
    width: 13px;
    width: 22px;
  }
  .mobile_channels .bottom ul li.add_new_channel .data p:nth-child(1) {
    font-size: 13px;
    font-size: 18px;
  }
  .mobile_channels .bottom ul li.add_new_channel:hover {
    background: #f9f9f9;
    border: 1px solid #dcdcdc;
  }
  .mobile_channels .bottom ul li.add_new_channel:hover .img_wrap {
    background: #0037d6;
  }
  .mobile_channels.active {
    transform: unset;
  }
  .mobile_channels.active .back {
    opacity: 0.4;
  }
  header .wrapper {
    padding: 10px 0;
  }
  header .wrapper .side:nth-child(1) .channels {
    display: none;
  }
  header .wrapper .side:nth-child(1) .logo {
    width: 137px;
  }
  header .wrapper .side:nth-child(2) {
    display: none;
  }
  header .wrapper .side.mobile {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .wrapper .side.mobile .icon_wrap {
    position: relative;
  }
  header .wrapper .side.mobile .icon_wrap .icon {
    position: absolute;
    bottom: -2px;
    right: 0px;
  }
  header .wrapper .side.mobile .menu_icon {
    width: 28px;
    margin-right: 4px;
  }
}

@media only screen and (max-width: 767px) {
  .campaigns .side:nth-child(1) {
    width: 100%;
    justify-content: space-between;
  }
  .campaigns .side:nth-child(1) .filter {
    display: block;
    padding: 11px 11px;
    padding-bottom: 10px;
    border: 1.08px solid #CDCDCD;
    border-radius: 50px;
    background: #fff;
  }
  .campaigns .side:nth-child(1) .filter img {
    width: 13px;
  }
  .campaigns .side:nth-child(2) {
    display: none;
  }
  .campaigns .filter_wrap {
    display: flex;
    gap: 5px;
  }
  .all_campaigns .campaign {
    position: relative;
  }
  .all_campaigns .campaign .row:nth-child(1) {
    gap: 14px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(1) {
    font-size: 13px;
    margin-bottom: -2px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(2) {
    font-size: 22px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .status {
    display: none;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    padding: 3px 8px;
    padding-top: 2px;
    border-top: 0 !important;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0 !important;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(2) .controll .edit {
    display: none;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block {
    width: 490px;
  }
  #page-container #campaignsPagesContainer #configurate #configuratingBlock #configurationTabs li a {
    font-size: 15px;
  }
  #page-container #campaignsPagesContainer .preview .wrapper .preview_shorts_desktop .yt_wrapper .yt_body .short_info_wrapper .yt_info .row {
    margin: 5px;
    margin-bottom: 0;
  }
  #page-container #campaignsPagesContainer .preview .wrapper .preview_in_feed_mobile .yt_wrapper .yt_body .row .img_wrapper {
    height: 70px;
  }
}

@media only screen and (max-width: 640px) {
  .new-campaign-page #step-2-stages {
    display: none;
  }
  .new-campaign-page .new-campaign .step-1 .content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px 8px;
    grid-template-areas: ". .";
  }
  .new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate {
    flex-wrap: wrap;
  }
  .new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side {
    width: 100% !important;
  }
  .new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side .estimate {
    width: 100%;
    text-align: left !important;
  }
  .new-campaign-page .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side .estimate p {
    text-align: left !important;
  }
  .campaigns {
    margin-bottom: -5px;
  }
  .all_campaigns .campaign {
    padding: 0;
  }
  .all_campaigns .campaign .row:nth-child(1) {
    gap: 14px;
    align-items: stretch;
  }
  .all_campaigns .campaign .row:nth-child(1) .image_wrapper {
    width: 150px;
    height: unset;
  }
  .all_campaigns .campaign .row:nth-child(1) .image_wrapper img {
    border-radius: 4px 0 0 0;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper {
    width: calc(100% - 150px);
    margin-top: 10px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head {
    margin-right: 10px;
    margin-right: 10px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(1) {
    font-size: 13px;
    margin-bottom: -3px;
    margin-bottom: 2px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .head .side:nth-child(1) p:nth-child(2) {
    font-size: 24px;
    line-height: 20px;
    font-size: 18px;
    line-height: 18px;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .data {
    display: none;
  }
  .all_campaigns .campaign .row:nth-child(1) .data_wrapper .data .block {
    width: 490px;
  }
  .all_campaigns .campaign .data-mobile {
    display: flex;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    border-top: 1px solid #F0F0F0;
    padding-top: 0;
  }
  .all_campaigns .campaign .data-mobile .column {
    border-right: 1px solid #F0F0F0;
    height: 100%;
    padding-top: 10px;
    width: 30%;
    padding-bottom: 8px;
  }
  .all_campaigns .campaign .data-mobile .column p:nth-child(1) {
    font-size: 20px;
    font-weight: 500;
    line-height: 18px;
  }
  .all_campaigns .campaign .data-mobile .column p:nth-child(2) {
    font-size: 15px;
    font-weight: 300;
  }
  .all_campaigns .campaign .data-mobile .column:nth-child(3) {
    border-right: unset;
  }
  .add_new div {
    padding: 35px;
  }
  footer .wrapper {
    flex-wrap: wrap;
    margin: 0px 10px;
    width: unset;
  }
  footer .wrapper .side:nth-child(1) {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .wrapper .side:nth-child(1) .menu_block {
    width: 100%;
  }
  footer .wrapper .side:nth-child(1) .menu_block p {
    font-size: 17px;
  }
  footer .wrapper .side:nth-child(1) .menu_block ul li {
    font-size: 20px;
  }
  footer .wrapper .side:nth-child(2) {
    width: 100%;
    margin-top: 30px;
  }
  footer .wrapper .side:nth-child(2) .button_wrap button {
    justify-content: center;
    width: 100%;
    padding: 12px 18px;
    text-align: center;
    font-size: 16px;
  }
}

@media only screen and (max-width: 570px) {
  .new-campaign-page .new-campaign .step-3 .summary {
    padding: 0;
    padding-top: 15px;
  }
  .new-campaign-page .new-campaign .step-3 .summary .summary_wrapper {
    padding: 0;
    width: 95%;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap {
    padding: 0;
    width: 95%;
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .block .heading {
    padding: 13px 15px;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .checkmark-single {
    border-right: none;
    border-radius: 0;
    border-left: none;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .checkmark-single label {
    padding: 10px 15px !important;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .payment-method {
    border-right: none;
    border-radius: 0;
    border-left: none;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .payment-method .block_content {
    padding: 13px 15px !important;
  }
  .new-campaign-page .new-campaign .step-3 .payment .payment_wrap .billing-information {
    border-right: none;
    border-radius: 0;
    border-left: none;
  }
  .new-campaign-page main {
    width: 100%;
  }
  .new-campaign-page main .next_button button {
    width: 96%;
    margin-top: 30px !important;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 15px !important;
    font-size: 19px !important;
    padding-left: 19px !important;
    text-align: left;
    justify-content: space-between;
  }
  .new-campaign-page main .next_button button img {
    width: 20px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad-music .switch_buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block {
    padding-top: 23px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .switch_buttons button {
    font-size: 18px !important;
    padding: 15px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .checkbox_wrapper {
    font-size: 18px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .checkbox_wrapper input {
    font-size: 18px;
    width: 17px;
    height: 17px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .checkbox_wrapper label {
    font-size: 17px;
    margin-left: 4px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay {
    position: relative;
    width: 100%;
    height: auto;
    top: unset;
    left: unset;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 6px;
    flex-direction: column-reverse;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list {
    width: 100%;
    margin-top: 8px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper input {
    font-size: 16px;
    padding: 14px;
    padding-left: 17px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .input_wrapper img {
    right: 17px;
    width: 17px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper {
    margin-top: 10px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item {
    padding: 12px;
    font-size: 16px;
    padding-right: 14px;
    padding-left: 17px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_list .list_wrapper img {
    width: 21px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .radius {
    width: 100%;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .radius input {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: #fdfdfd;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .radius select {
    padding: 6.5px;
    font-size: 15px;
    padding-left: 10px;
    background: #f8f8f8;
    top: 4px;
    right: 4px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch {
    width: 100%;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch .switch {
    border-radius: 3px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch .switch .option {
    font-size: 15px;
    padding: 9px 19px;
    padding-bottom: 10px;
    width: 50%;
    text-align: center;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .target_map .map_wrapper .overlay .location_switch .switch .selection {
    border-radius: 4px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .top {
    border-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.03px;
    line-height: 23px;
    padding-bottom: 0;
    color: #313131;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .top h2 {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.03px;
    line-height: 23px;
    padding-bottom: 0;
    color: #313131;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .switch_buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_groups {
    flex-wrap: wrap;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .bottom .explainer {
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 300;
    margin-bottom: 19px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_group {
    width: 100%;
    background: unset;
    background-color: #F9F9F9;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_group h3 {
    font-size: 18px;
    margin-top: 8px;
    padding-bottom: 12px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_group .options {
    display: block;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option {
    margin-bottom: 14px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label {
    font-size: 18px;
    letter-spacing: 0.1px;
    font-weight: 300;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option label div {
    margin-right: 4px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .select_group .options .option:last-child {
    margin-bottom: 7px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate {
    flex-wrap: wrap;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) {
    width: 100%;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap input {
    font-size: 17px;
    padding: 14px;
    padding-left: 17px;
    padding-left: 33px;
    font-size: 19px;
    padding: 17px;
    padding-left: 33px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) button {
    font-size: 18px;
    padding: 12px 19px;
    padding-bottom: 13px;
    padding: 12px 15px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .input_wrap p {
    font-size: 19px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .select_wrap h4 {
    font-size: 17px;
    padding-bottom: 4px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(1) .select_wrap .selectors {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . ." ". . .";
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .select_wrap .selectors {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . ." ". . .";
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .select_wrap .selectors div:nth-child(6) {
    display: none;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .select_wrap .selectors div:nth-child(8) {
    display: none;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(2) {
    width: 100%;
    padding: 20px 0;
    padding-left: 20px;
    padding-right: 10px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(2) .estimate h3 {
    width: 100%;
    text-align: left;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.budget .bottom .estimate .side:nth-child(2) .estimate p {
    text-align: left;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom {
    flex-flow: column-reverse;
    gap: 0;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 20px;
    padding-bottom: 8px;
    margin-top: 7px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method .checkmark {
    display: none;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method p {
    display: none;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(1) {
    justify-content: center;
    padding: 8px 12px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(2) {
    padding: 8px 12px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(3) {
    padding: 6.5px 9px !important;
    padding-top: 8px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(3) .img_wrap {
    width: 34px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(4) {
    padding: 10px 8px !important;
    padding-top: 11px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(4) .img_wrap {
    width: 38px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(4) .img_wrap img {
    height: unset;
    width: 33px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(5) {
    padding: 0 10px !important;
    padding-top: 11.5px !important;
    padding-bottom: 10px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(5) .img_wrap {
    width: 34px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(5) .img_wrap img {
    height: unset;
    width: 34px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(1) {
    width: 100%;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(1) .block {
    padding: 12px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(2) {
    width: 100%;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(2) .payment_methods_wrap .payment_method {
    padding: 13px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(2) .payment_methods_wrap .payment_method p {
    font-size: 17px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.payment_method .bottom .side:nth-child(2) .payment_methods_wrap .payment_method .checkmark {
    width: 20px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 7px;
    grid-template-areas: "." ".";
    text-align: left;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.delivery_speed .bottom .speed button {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 18px !important;
    padding: 15px;
    text-align: left !important;
    padding-left: 20px;
    justify-content: start !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option {
    padding: 4px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div {
    padding: 10px;
    padding-bottom: 0;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list {
    margin-bottom: 20px !important;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .switchy {
    margin-bottom: 5px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .switchy h3 {
    width: calc(100% - 60px);
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .switchy span {
    width: 40px;
    height: 27px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list {
    font-size: 15px;
    line-height: 19px;
    margin-top: 8px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list li {
    align-items: start;
    margin-bottom: 4px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list li img {
    margin-top: 7px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type {
    padding: 12px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up {
    padding-bottom: 15px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_logo {
    height: 3vw;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_menu {
    height: 3vw;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_user {
    height: 3vw;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing {
    gap: 13px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_img_wrapper {
    width: 30%;
    padding-bottom: 19%;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data .desc {
    display: none;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type {
    padding: 3vw;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .icon {
    font-size: 2.5vw;
    padding: 0.7vw 1vw;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .channel {
    font-size: 3vw;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .views {
    font-size: 3vw;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result {
    margin-top: 17px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .add_to_list {
    top: -13px;
    border-radius: 3px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .video_type {
    top: -13px;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .icon {
    width: 70px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .core .name {
    line-height: 19px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .blocks .block .targeting_channel_results .result .about .stats .subs {
    gap: 1px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .form_header {
    width: 94%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .form_header .row {
    flex-wrap: wrap;
  }
  .new-campaign-page main .new-campaign .step .step-wrapper .form .form_header .row h1 {
    width: 100%;
  }
  .new-campaign-page #configurate .form_header .row {
    flex-wrap: wrap;
  }
  .new-campaign-page #configurate .form_header .row h1 {
    width: 100%;
  }
  .new-campaign-page.current-step-3 .show_preview.l-tablet {
    display: none;
  }
  .popup_wrapper .popup_campaign_placements {
    width: 95%;
    padding: 16px 16px;
  }
  .popup_wrapper .popup_campaign_placements .heading {
    margin-bottom: 13px;
  }
  .popup_wrapper .popup_campaign_placements .heading p {
    font-size: 22px;
  }
  .popup_wrapper .popup_campaign_placements .info .search input[type=submit] {
    padding-top: 6px;
  }
  .popup_wrapper .popup_campaign_placements .info .results_tab {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
  }
  .popup_wrapper .popup_campaign_placements .info .results_tab .tab {
    font-size: 15px;
    padding: 7px 15px !important;
  }
  .popup_wrapper .popup_campaign_placements .info .empty_note {
    line-height: 17px;
  }
  .popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results {
    flex-wrap: wrap;
  }
  .popup_wrapper .popup_campaign_placements .info .results_wrapper #results_old_placements .result .about .sub_results .sub_result {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-3 .summary {
    border: unset;
  }
  .new-campaign-page .new-campaign .step-final .confirmation_wrapper {
    border-radius: unset;
  }
  .new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom {
    flex-wrap: wrap;
  }
  .new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom a {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom a .button {
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 10px;
  }
  .new-campaign-page .new-campaign .step-final .confirmation_wrapper .bottom a .button p {
    width: 50%;
    font-size: 24px !important;
    margin-bottom: 10px;
  }
  .new-campaign-page .new-campaign .step-final .list {
    width: 95%;
  }
  .new-campaign-page .new-campaign .step-final .list .faq .top img {
    margin-right: 15px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div label h3 {
    width: calc(100% - 90px);
    white-space: normal;
    line-height: 20px;
    margin-top: 4px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing {
    width: 100%;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data .title {
    font-size: 3.5vw;
    line-height: 4vw;
  }
  .popup_my_channels .popup_my_channels_wrapper {
    width: 95%;
  }
  .popup_my_channels .popup_my_channels_wrapper #youtube-new-url-label {
    left: 0;
  }
  .popup_my_channels .popup_my_channels_wrapper .heading {
    padding: 17px 22px;
    padding-bottom: 14px;
  }
  .popup_my_channels .popup_my_channels_wrapper .heading .side:nth-child(2) {
    flex-wrap: wrap;
    justify-content: end;
    gap: 4px 8px;
  }
  .popup_my_channels .popup_my_channels_wrapper .heading .side:nth-child(2) img:nth-child(1) {
    width: 84px;
  }
  .popup_my_channels .popup_my_channels_wrapper .heading .side:nth-child(2) img:nth-child(3) {
    width: 106px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content {
    padding: 12px 17px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link {
    margin-top: 30px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side:nth-child(1) p {
    margin-top: 14px;
    font-size: 21px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side {
    width: 100%;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side:nth-child(2) p {
    margin-top: 15px;
    margin-bottom: -1px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side_wrap {
    flex-flow: wrap-reverse;
    margin-bottom: 10px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side:nth-child(3) .switch {
    border-radius: 5px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side:nth-child(3) .switch .option_selected {
    width: 50%;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side:nth-child(3) .switch .option {
    text-align: center;
    width: 50%;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .how_to_link .side:nth-child(3) .switch .selection {
    text-align: center;
    left: 3px;
    width: 95px;
    width: 50% !important;
    border-radius: 4px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .actions {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .actions div:nth-child(1) {
    width: 100%;
  }
  .popup_my_channels .popup_my_channels_wrapper .content .actions div:nth-child(2) {
    width: 100%;
  }
  .popup_my_channels .popup_my_channels_wrapper #popup_my_channels_final_click {
    padding: 11px !important;
    border: unset;
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 500px) {
  #braintreeForm .new_cover #dropin-container .braintree-show-card .braintree-upper-container, #braintreeForm .new_cover #dropin-container .braintree-show-venmo .braintree-upper-container, #braintreeForm .new_cover #dropin-container .braintree-show-googlePay .braintree-upper-container, #braintreeForm .new_cover #dropin-container .braintree-show-applePay .braintree-upper-container {
    padding: 0;
    border: unset;
    margin-top: 0;
  }
  #braintreeForm .new_cover #dropin-container .braintree-sheet__container {
    padding: 0;
  }
}

@media only screen and (max-width: 480px) {
  .new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .row {
    flex-wrap: wrap;
    width: 100%;
  }
  .new-campaign-page .step-3 .payment .payment_wrap #braintreeForm .billing-information .row .col {
    width: 100% !important;
  }
  .card .target_map .target_map_switch {
    left: 52.5%;
    top: 10px;
  }
  .card .target_map .target_map_data {
    width: 50%;
    left: 5px;
    top: 0px;
  }
  .card .target_map .target_map_data .targeting-location-table-con .table_heading {
    width: 100%;
    line-height: 14px;
    padding: 8px 10px;
    font-weight: 500;
  }
  .preview .wrapper .preview_search .yt_wrapper .yt_body .row {
    width: 100%;
  }
  .preview .wrapper .preview_search .yt_wrapper .yt_body .row .row_data .video_title {
    line-height: 15px;
    margin-bottom: 3px;
  }
  .preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column:nth-child(2) .video_name {
    font-size: 2vw;
    line-height: 1.7vw;
  }
  .preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column:nth-child(2) .video_info div:nth-child(1) {
    font-size: 1.4vw;
  }
  .preview .wrapper .preview_in_feed .yt_body .yt_sidebar .row:nth-child(2) .column:nth-child(2) .video_info div:nth-child(2) {
    display: none;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info_wrap img {
    width: 3.5vw;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info_wrap .channel_info {
    display: flex;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info_wrap .channel_info .ad_title {
    display: block !important;
    opacity: 1;
    position: relative;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info_wrap .channel_info .ad_icon_wrap .ad_icon {
    font-size: 1.5vw;
    padding: 0.5vw;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .channel_info_wrap .channel_info .ad_icon_wrap p {
    display: none;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_body .yt_sidebar .row:first-child .subs {
    font-size: 1.7vw;
    padding: 0.5vw 1vw;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_info .title {
    font-size: 4vw;
  }
  .preview .wrapper .preview_1 .yt_wrapper .yt_info .stats p {
    font-size: 3vw;
  }
  .new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper {
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: start;
    align-items: start;
    float: unset;
    right: unset;
    left: unset;
  }
  .new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalType {
    margin: 0;
    margin-bottom: 10px;
  }
  .new-campaign-page #configurate .lifetime-budget .budgetSetResultGoalTypeWrapper #budgetSetResultGoalType .btn-select.active {
    width: -moz-fit-content;
    width: fit-content;
  }
  .new-campaign-page #scheduleDatepickerContainer {
    gap: 0;
    flex-wrap: wrap;
  }
  .new-campaign-page .new-campaign .step-1 .load_more_videos {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-1 .top {
    margin-top: 20px;
  }
  .new-campaign-page .new-campaign .step-1 .top p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .select_wrapper {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) #video_type_selector_parent {
    width: 48%;
    margin: 0;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side:nth-child(2) .youtube_search_order_wrapper {
    width: 48%;
    margin: 0;
  }
  .new-campaign-page .new-campaign .step-1 .content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 14px 8px;
    grid-template-areas: ".";
  }
  .new-campaign-page .new-campaign .step-1 .content .video_wrap .video .shorts {
    padding: 8px;
  }
  .new-campaign-page .new-campaign .step-1 .content .video_wrap .video .shorts img {
    height: 20px;
  }
  .new-campaign-page .new-campaign .step-1 .content .video_wrap .video .data_wrapper p:nth-child(1) {
    font-size: 15px;
    letter-spacing: -0.61px;
    line-height: 23px;
  }
  .new-campaign-page .new-campaign .step-1 .content .video_wrap .video .data_wrapper p:nth-child(2) {
    font-size: 15px;
    letter-spacing: -0.61px;
    line-height: 23px;
  }
  .new-campaign-page .new-campaign .step-1 .content .video_wrap .video .video_name {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.7px;
    line-height: 26px;
    margin-top: 11px;
    padding-bottom: 4px;
    padding-left: 4px;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side {
    width: 100%;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side input {
    width: 100%;
    width: -webkit-fill-available !important;
    color: #5F5F5F !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: -0.51px !important;
    line-height: 19px !important;
  }
  .new-campaign-page .new-campaign .step-1 .action_wrap .side button {
    position: relative !important;
    transform: unset !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    margin-top: 6px !important;
    width: 100% !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: -0.24px !important;
    line-height: 18px !important;
    text-align: center !important;
    padding: 11px !important;
  }
  .new-campaign-page .new-campaign .step-1 {
    width: 94%;
    margin: 0 auto;
  }
  .new-campaign-page .new-campaign .step-2 .stage_1_blocks .title-only {
    padding-top: 20px !important;
  }
  .new-campaign-page .new-campaign .step-2 .stage_1_blocks .title-only h2 {
    margin-bottom: 14px !important;
  }
  /* Auto Promote Confirmation  */
  .auto-promote-confirmation main {
    width: 100%;
    border-radius: 0;
  }
  .new-campaign-page #configurate .form_header .row {
    width: 100%;
  }
  .new-campaign-page #configurate .form_header .row .tabs {
    width: 100%;
    margin-top: 5px;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-1-nav {
    height: 35px;
    background: #e2e2e2 !important;
    clip-path: polygon(0% 0%, 93% 0, 100% 50%, 93% 100%, 0% 100%) !important;
    margin-right: -6px;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-1-nav svg {
    background: #244ff2 !important;
    z-index: -1;
    clip-path: polygon(0.5% 2%, 92.5% 2%, 99.5% 50%, 92.5% 97%, 0.5% 97.5%) !important;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-1-nav svg g {
    display: none;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-1-nav.inactive svg {
    background: #fff !important;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-2-nav {
    height: 35px;
    background: #e2e2e2 !important;
    clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0% 100%, 7% 50%, 0% 0%) !important;
    overflow: visible;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-2-nav svg {
    clip-path: polygon(93% 2%, 99% 50%, 93% 97%, 1% 97%, 8% 50%, 1% 3%) !important;
    background: #244ff2 !important;
    z-index: -1;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-2-nav svg g {
    display: none;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-2-nav.inactive svg {
    background: #fff !important;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-3-nav {
    height: 35px;
    background: #e2e2e2 !important;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 7% 50%, 0% 0%) !important;
    overflow: visible;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-3-nav svg {
    clip-path: polygon(99.5% 2%, 99.5% 50%, 99.5% 98%, 1% 98%, 8% 50%, 1% 2%) !important;
    background: #244ff2 !important;
    z-index: -1;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-3-nav svg g {
    display: none;
  }
  .new-campaign-page #configurate .form_header .row .tabs .tab.step-2-3-nav.inactive svg {
    background: #fff !important;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper {
    position: relative;
    padding-top: 60px;
    margin-top: 50px;
    padding-right: 17px;
    border-radius: 0;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .top {
    margin-left: 0;
    text-align: center;
    margin-bottom: 25px;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .top .side {
    width: 100%;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .top .side h1 {
    font-size: 45px;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .top .side p {
    font-size: 22px;
    margin-top: 5px;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .top img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .bottom {
    flex-wrap: wrap;
    margin: 0;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .bottom a {
    width: 100%;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .bottom .button {
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 10px;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .bottom .icon {
    width: 50%;
  }
  .settings.auto-promote-confirmation .content .confirmation_wrapper .bottom p {
    width: 50%;
    font-size: 24px !important;
    margin-bottom: 10px;
  }
  /* Auto Promote */
  .settings.auto-promote .next_button button {
    width: 96%;
    margin-top: 30px !important;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .auto-promote-page main {
    width: 100%;
  }
  .settings.auto-promote .content h2.s-tablet {
    margin-left: 12px;
  }
  .settings.auto-promote .content .block.build-ad-music .switch_buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .settings.auto-promote .content .block {
    padding-top: 23px;
  }
  .settings.auto-promote .content .block .switch_buttons button {
    font-size: 18px !important;
    padding: 15px;
  }
  .settings.auto-promote .content .block .target_map {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .settings.auto-promote .content .block .target_map .checkbox_wrapper {
    font-size: 18px;
  }
  .settings.auto-promote .content .block .target_map .checkbox_wrapper input {
    font-size: 18px;
    width: 17px;
    height: 17px;
  }
  .settings.auto-promote .content .block .target_map .checkbox_wrapper label {
    font-size: 17px;
    margin-left: 4px;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay {
    position: relative;
    width: 100%;
    height: auto;
    top: unset;
    left: unset;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 6px;
    flex-direction: column-reverse;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_list {
    width: 100%;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_list .input_wrapper input {
    font-size: 16px;
    padding: 14px;
    padding-left: 17px;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_list .input_wrapper img {
    right: 17px;
    width: 17px;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_list .list_wrapper {
    margin-top: 10px;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_list .list_wrapper .list_item {
    padding: 12px;
    font-size: 16px;
    padding-right: 14px;
    padding-left: 17px;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_list .list_wrapper img {
    width: 21px;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_switch {
    width: 100%;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_switch .switch {
    border-radius: 3px;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_switch .switch .option {
    font-size: 15px;
    padding: 9px 19px;
    padding-bottom: 10px;
    width: 50%;
    text-align: center;
  }
  .settings.auto-promote .content .block .target_map .map_wrapper .overlay .location_switch .switch .selection {
    border-radius: 4px;
  }
  .settings.auto-promote .content .block .top {
    border-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.03px;
    line-height: 23px;
    padding-bottom: 0;
    color: #313131;
  }
  .settings.auto-promote .content .block .top h2 {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.03px;
    line-height: 23px;
    padding-bottom: 0;
    color: #313131;
  }
  .settings.auto-promote .content .block .switch_buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .settings.auto-promote .content .block .select_groups {
    flex-wrap: wrap;
  }
  .settings.auto-promote .content .block .bottom .explainer {
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 300;
    margin-bottom: 19px !important;
  }
  .settings.auto-promote .content .block .select_group {
    width: 100%;
    background: unset;
    background-color: #F9F9F9;
  }
  .settings.auto-promote .content .block .select_group h3 {
    font-size: 18px;
    margin-top: 8px;
    padding-bottom: 12px;
  }
  .settings.auto-promote .content .block .select_group .options {
    display: block;
  }
  .settings.auto-promote .content .block .select_group .options .option {
    margin-bottom: 14px;
  }
  .settings.auto-promote .content .block .select_group .options .option label {
    font-size: 18px;
    letter-spacing: 0.1px;
    font-weight: 300;
  }
  .settings.auto-promote .content .block .select_group .options .option label div {
    margin-right: 4px;
  }
  .settings.auto-promote .content .block .select_group .options .option:last-child {
    margin-bottom: 7px;
  }
  .settings.auto-promote .content .block.select_div .top {
    margin-bottom: 13px !important;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate {
    flex-wrap: wrap;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(1) {
    width: 100%;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(1) .input_wrap input {
    font-size: 17px;
    padding: 14px;
    padding-left: 17px;
    padding-left: 33px;
    font-size: 19px;
    padding: 17px;
    padding-left: 33px;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(1) button {
    font-size: 18px;
    padding: 12px 19px;
    padding-bottom: 13px;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(1) .input_wrap p {
    font-size: 19px;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(1) .select_wrap h4 {
    font-size: 17px;
    padding-bottom: 4px;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(1) .select_wrap .selectors {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . ." ". . .";
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .select_wrap .selectors {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . ." ". . .";
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .select_wrap .selectors div:nth-child(6) {
    display: none;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .select_wrap .selectors div:nth-child(8) {
    display: none;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(2) {
    width: 100%;
    padding: 20px 0;
    padding-left: 20px;
    padding-right: 10px;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(2) .estimate h3 {
    width: 100%;
    text-align: left;
  }
  .settings.auto-promote .content .block.budget .bottom .estimate .side:nth-child(2) .estimate p {
    text-align: left;
  }
  .settings.auto-promote .content .block.payment_method .bottom {
    flex-flow: column-reverse;
    gap: 0;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 20px;
    padding-bottom: 8px;
    margin-top: 7px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method .checkmark {
    display: none;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method p {
    display: none;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(1) {
    justify-content: center;
    padding: 8px 12px !important;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(2) {
    padding: 8px 12px !important;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(3) {
    padding: 6.5px 9px !important;
    padding-top: 8px !important;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(3) .img_wrap {
    width: 34px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(4) {
    padding: 10px 8px !important;
    padding-top: 11px !important;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(4) .img_wrap {
    width: 38px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(4) .img_wrap img {
    height: unset;
    width: 33px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(5) {
    padding: 0 10px !important;
    padding-top: 11.5px !important;
    padding-bottom: 10px !important;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(5) .img_wrap {
    width: 34px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .payment_methods_wrap .payment_method:nth-child(5) .img_wrap img {
    height: unset;
    width: 34px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .side:nth-child(1) {
    width: 100%;
  }
  .settings.auto-promote .content .block.payment_method .bottom .side:nth-child(1) .block {
    padding: 0px !important;
  }
  .settings.auto-promote .content .block.payment_method .bottom .side:nth-child(1) .card_input_block {
    padding: 12px !important;
  }
  .settings.auto-promote .content .block.payment_method .bottom .side:nth-child(2) {
    width: 100%;
  }
  .settings.auto-promote .content .block.payment_method .bottom .side:nth-child(2) .payment_methods_wrap .payment_method {
    padding: 13px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .side:nth-child(2) .payment_methods_wrap .payment_method p {
    font-size: 17px;
  }
  .settings.auto-promote .content .block.payment_method .bottom .side:nth-child(2) .payment_methods_wrap .payment_method .checkmark {
    width: 20px;
  }
  .settings.auto-promote .content .block.delivery_speed .bottom .speed {
    flex-wrap: wrap;
    gap: 6px;
  }
  .settings.auto-promote .content .block.delivery_speed .bottom .speed button {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 18px !important;
    padding: 15px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option {
    padding: 4px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div {
    padding: 10px;
    padding-bottom: 0;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list {
    margin-bottom: 20px !important;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div .switchy {
    margin-bottom: 5px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div .switchy h3 {
    width: calc(100% - 60px);
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div .switchy span {
    width: 40px;
    height: 27px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list {
    font-size: 15px;
    line-height: 19px;
    margin-top: 8px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list li {
    align-items: start;
    margin-bottom: 4px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .check_div .pros-cons-list li img {
    margin-top: 7px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type {
    padding: 12px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .up {
    padding-bottom: 15px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_logo {
    height: 3vw;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_menu {
    height: 3vw;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .up .yt_user {
    height: 3vw;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing {
    gap: 13px;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_img_wrapper {
    width: 30%;
    padding-bottom: 19%;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data .desc {
    display: none;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type {
    padding: 3vw;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .icon {
    font-size: 2.5vw;
    padding: 0.7vw 1vw;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .channel {
    font-size: 3vw;
  }
  .settings.auto-promote .content .block.build-ad .type_options .type_option .type_option_data .yt_type .down .listing .listing_data div .views {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 425px) {
  #modalAddPaymentMethod .row .col {
    padding: 0;
  }
}

@media only screen and (max-width: 370px) {
  .beta_bar {
    font-size: 12px;
  }
  .new-campaign-page #configurate .lifetime-budget .col.s12.m12 .row .col {
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . .";
  }
}

@media only screen and (max-width: 350px) {
  .navbar-fixed .header .container .brand-logo img {
    width: 100px !important;
  }
}

