.unsubscribe-page {
  background-color: #f1f1f1;
}
.unsubscribe-page-content {
  background-color: #fff;
  padding: 50px;
  width: 600px;
  margin: 30px auto;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}
.page-title-heading {
  margin-bottom: 30px;
}
.checkswitch {
  text-align: right;
}
.notify-check-option {
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
  padding-bottom: 25px;
  padding-top: 25px;
}
h4.notify-option-title {
  font-size: 18px;
  color: #333;
  margin-top: 0;
}
.page-title-heading h3 {
  margin-top: 0;
}
.submit-section {
    text-align: center;
    margin: 20px 0;
}


.checkswitch .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  bottom: 0;
  margin-bottom: 0;
}

.checkswitch .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.checkswitch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.checkswitch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.checkswitch input:checked + .slider {
  background-color: var(--primary);
}

.checkswitch input:focus + .slider {
  box-shadow: 0 0 1px var(--primary);
}

.checkswitch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.checkswitch .slider.round {
  border-radius: 34px;
}

.checkswitch .slider.round:before {
  border-radius: 50%;
}
.subsribe-span {
    color: var(--primary);
}
.unsubsribe-span {
    color: #da0400;
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
}
.notify-user-name{
  font-size: 16px;
}


@media screen and (max-width: 767px){
  .unsubscribe-page-content {
    padding: 30px;
    width: 100%;
  }
}

@media screen and (max-width: 480px){
  .page-title-heading {
    margin-bottom: 20px;
  }
  h4.notify-option-title.notify-heading {
    font-size: 16px;
  }
  .radio-inline.notify-btn{
    display: block;
    font-size: 14px;
    margin-left: 0px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 375px){
  h4.notify-option-title.notify-heading {
    font-size: 14px;
  }
  .subsribe-span {
    font-size: 13px;
  }
}