@font-face {
  font-family: "Open Sans Regular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "Open Sans Light";
  src: url("../fonts/OpenSans/OpenSans-Light.ttf");
}
@font-face {
  font-family: "Open Sans Bold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf");
}
@font-face {
  font-family: "ValueSansPro Bold";
  src: url("../fonts/ValueSansPro/ValueSansPro-Bold.ttf");
}
@font-face {
  font-family: "Rubik Bold";
  src: url("../fonts/Rubik/Rubik-Bold.ttf");
}
@font-face {
  font-family: "Rubik Medium";
  src: url("../fonts/Rubik/Rubik-Medium.ttf");
}
@font-face {
  font-family: "Rubik Regular";
  src: url("../fonts/Rubik/Rubik-Regular.ttf");
}
@font-face {
  font-family: "Rubik Light";
  src: url("../fonts/Rubik/Rubik-Light.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a, a:visited {
  text-decoration: none;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.common__paragraph-text {
  font-size: 18px;
  font-family: "Open Sans Regular";
  color: rgba(44, 47, 56, 0.6);
  line-height: 27px;
  margin-bottom: 27px;
}
.common__paragraph-header {
  font-size: 24px;
  font-family: "Open Sans Regular";
  color: #2C2F38;
  margin-bottom: 17px;
}
.common__link {
  font-size: 18px;
  font-family: "Open Sans Regular";
  color: rgba(17, 89, 234, 0.6);
}

@media only screen and (min-width: 768px) {
  .common__paragraph-text {
    margin-bottom: 27px;
  }
  .common__paragraph-header {
    margin-bottom: 42px;
  }
}
@media only screen and (min-width: 1200px) {
  .common__paragraph-text {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 36px;
  }
  .common__paragraph-header {
    font-size: 42px;
    margin-bottom: 52px;
  }
  .common__link {
    font-size: 24px;
  }
}
.header {
  position: relative;
  background: #FFF;
  padding: 14px 32px 12px 24px;
  box-shadow: 0px 3px 6px #00000029;
}
.header-fit {
  position: relative;
}
.header__logo {
  font-size: 14px;
  font-family: "Open Sans Regular", sans-serif;
  letter-spacing: 0.8px;
  font-weight: 500;
  color: #2F3144;
  display: inline-block;
}
.header__logo-image {
  width: 75px;
  vertical-align: middle;
  margin-right: 10px;
}
.header__hamburger {
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  position: absolute;
  width: 18px;
  cursor: pointer;
}
.header__hamburger:before, .header__hamburger:after, .header__hamburger div {
  background: #000000;
  content: "";
  display: block;
  height: 2px;
  border-radius: 3px;
  margin: 3px 0;
  transition: 0.5s;
}
.header__hamburger--open:before {
  transform: translateY(5px) rotate(135deg);
}
.header__hamburger--open:after {
  transform: translateY(-5px) rotate(-135deg);
}
.header__hamburger--open div {
  transform: scale(0);
}

.menu--mobile {
  display: none;
  position: fixed;
  top: 47px;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 45px;
  background: #FFFFFF;
  z-index: 100;
  overflow-y: auto;
}
.menu--open {
  display: block;
}
.menu__item {
  color: #000000;
  display: block;
  background: transparent;
  padding: 16px 0px 16px 31px;
  font-size: 30px;
  font-weight: bold;
  font-family: "ValueSansPro Bold", sans-serif;
  position: relative; /* Add this to ensure the pseudo-element is positioned correctly */
  
}

.menu__item--active {
  color: 000;
}

.menu__item--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0; /* Ensures the element stretches end to end */
  bottom: 0; /* Align to the bottom edge of the menu item */
  height: 2px; /* Height of the underline */
  background: linear-gradient(to right, 
  #4285F4 0%, #4285F4 15%, 
  #DB4437 25%, #DB4437 40%, 
  #F4B400 50%, #F4B400 65%, 
  #0F9D58 75%, #0F9D58 90%);
  display: block;
  
}

.menu__item--active:hover, .menu__item:hover {
  color: 000;
}

.menu__item--active:hover::after, .menu__item:hover::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0; /* Ensures the element stretches end to end */
  bottom: 0; /* Align to the bottom edge of the menu item */
  height: 2px; /* Height of the underline */
  background: linear-gradient(to right, 
  #4285F4 0%, #4285F4 15%, 
  #DB4437 25%, #DB4437 40%, 
  #F4B400 50%, #F4B400 65%, 
  #0F9D58 75%, #0F9D58 90%);
  display: block;
  
}


@media only screen and (min-width: 768px) {
  .header {
    padding: 23px 48px 15px 50px;
  }
  .header__logo {
    font-size: 20px;
  }
  .header__logo-image {
    width: 75px;
    margin-right: 14px;
  }
  .header__hamburger {
    width: 38px;
  }
  .header__hamburger:before, .header__hamburger:after, .header__hamburger div {
    height: 4px;
    margin: 6px 0;
    transition: 0.5s;
  }
  .header__hamburger--open:before {
    transform: translateY(10px) rotate(135deg);
  }
  .header__hamburger--open:after {
    transform: translateY(-10px) rotate(-135deg);
  }

  .menu--mobile {
    padding-top: 58px;
    top: 80px;
  }
  .menu__item {
    padding: 29px 0 29px 46px;
    font-size: 42px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-fit {
    width: 100%;
    max-width: 1082px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }

  body {
    padding-top: 80px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
  }
  .header__logo {
    font-size: 20px;
  }
  .header__logo-image {
    width: 200px;
    margin-right: 120px;
  }
  .header__hamburger {
    display: none;
  }

  .menu {
    position: relative;
    display: block;
    margin-left: auto;
    top: 0;
  }
  .menu--mobile {
    background: transparent;
    padding-top: 0;
    overflow-y: hidden;
    margin: 0px -262px 0px 0px;
  }
  .menu__item {
    color: #2F3144;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 29px;
    padding: 0 11px;
    display: inline-block;
    text-align: center;
    margin-right: 15px;
    font-weight: unset;
  }
  .menu__item--active {
    border-bottom:   #1159EA;
  }
  .menu__item:last-child {
    margin-right: 0;
  }
}
.footer {
  background-color: #3587E3;
}
.footer__content {
  padding: 24px 25px 18px;
}
.footer__menu {
  margin-bottom: 13px;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 30px 10px 10px;
  font-size: 12px;
  font-family: "Open Sans Regular";
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.footer-menu__link {
  color: #FFF;
  display: block;
  font-size: 12px;
  font-family: "Open Sans Regular";
}

@media only screen and (min-width: 768px) {
  .footer__content {
    padding: 26px 42px 25px 57px;
  }
  .footer__menu {
    margin-bottom: 0;
  }
  .footer__copyright {
    text-align: left;
    
    float: right;
  }

  .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    float: left;
  }
  .footer-menu__item {
    margin-right: 40px;
  }
  .footer-menu__item:last-child {
    margin-right: 0;
  }
  .footer-menu__link {
    color: #FFF;
    display: block;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__content {
    width: 1094px;
    margin: 0 auto;
    padding: 26px 0 25px 0;
  }

  .footer-menu__link {
    color: #FFF;
    display: block;
    font-size: 12px;
  }
}
.temp-mail-generator {
  padding: 30px 0 40px 0;
  background-color: #F9FAFE;
}
.temp-mail-generator__header {
  margin: 0 auto 25px auto;
  font-family: "Rubik Bold";
  text-transform: uppercase;
  font-size: 36px;
  color: #2C2F38;
  width: 312px;
  line-height: 44px;
}
.temp-mail-generator__subheader {
  display: none;
}
.temp-mail-generator__email {
  margin: 0 auto;
  text-align: center;
}

.email-block__wrapper {
  position: relative;
  height: 176px;
  width: 312px;
  background-image: url("../images/top/top-mobile.svg");
  box-shadow: 0 4px 6px rgba(0, 43, 146, 0.5);
  border-radius: 23px;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0 auto 32px auto;
  
}
.email-block__genEmail {
  max-width: 296px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin: 10px auto 12px auto;
  font-family: "Open Sans Bold", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-block-btn {
  display: flex;
  justify-content: center;
}
.email-block__edit {
  margin-left: 20px;
  padding-top: 20px;
  width: 24px;
  position: relative;
  margin: 0 auto;
}
.email-block__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 14px;
  outline: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  width: 112px;
  color: #fff;
  border-radius: 15px;
}
.email-block__copy-msg {
  font-family: "Rubik Light";
  visibility: hidden;
  opacity: 0;
  display: flex;
  position: absolute;
  bottom: -8%;
  right: 40%;
  background: #E7E9F2;
  color: #40485D;
  width: 112px;
  height: 40px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.3s ease-out 0s;
}
.email-block__copy__icon {
  width: 22px;
  margin-left: 15px;
}
.email-block__deleteEmail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  outline: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  width: 45px;
  color: #fff;
  border-radius: 15px;
}

.button-tooltip {
  display: flex;
  position: absolute;
  bottom: 47px;
  left: -75px;
  background: #E7E9F2;
  color: #40485D;
  font-family: "Rubik Light", sans-serif;
  text-align: center;
  font-size: 12px;
  width: 215px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  visibility: hidden;
  opacity: 0;
  line-height: 20px;
  padding: 8px;
  transition: all 0.3s ease-out 0s;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
}

.button-tooltip__arrow {
  display: block;
  height: 10px;
  width: 10px;
  background-color: inherit;
  border: inherit;
  position: absolute;
  bottom: -8%;
  left: calc(50% - 10px);
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  transform: rotate(-45deg);
  border-radius: 0 0 0 0.25em;
}

.button-tooltip-dlt {
  display: flex;
  position: absolute;
  bottom: 47px;
  left: -64px;
  background: #E7E9F2;
  color: #40485D;
  font-family: "Rubik Light", sans-serif;
  text-align: center;
  font-size: 12px;
  width: 180px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  visibility: hidden;
  opacity: 0;
  line-height: 20px;
  padding: 8px;
  transition: all 0.3s ease-out 0s;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
}

.disappear-js {
  visibility: visible;
  opacity: 1;
}

.dot-spin {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  animation: dotSpin 1.5s infinite linear;
}

@keyframes dotSpin {
  0%, 100% {
    box-shadow: 0 -18px 0 0 #004BFF, 12px -12px 0 0 #004BFF, 18px 0 0 0 #004BFF, 12px 12px 0 -5px rgba(0, 75, 255, 0), 0 18px 0 -5px rgba(0, 75, 255, 0), -12px 12px 0 -5px rgba(0, 75, 255, 0), -18px 0 0 -5px rgba(0, 75, 255, 0), -12px -12px 0 -5px rgba(0, 75, 255, 0);
  }
  12.5% {
    box-shadow: 0 -18px 0 -5px rgba(0, 75, 255, 0), 12px -12px 0 0 #004BFF, 18px 0 0 0 #004BFF, 12px 12px 0 0 #004BFF, 0 18px 0 -5px rgba(0, 75, 255, 0), -12px 12px 0 -5px rgba(0, 75, 255, 0), -18px 0 0 -5px rgba(0, 75, 255, 0), -12px -12px 0 -5px rgba(0, 75, 255, 0);
  }
  25% {
    box-shadow: 0 -18px 0 -5px rgba(0, 75, 255, 0), 12px -12px 0 -5px rgba(0, 75, 255, 0), 18px 0 0 0 #004BFF, 12px 12px 0 0 #004BFF, 0 18px 0 0 #004BFF, -12px 12px 0 -5px rgba(0, 75, 255, 0), -18px 0 0 -5px rgba(0, 75, 255, 0), -12px -12px 0 -5px rgba(0, 75, 255, 0);
  }
  37.5% {
    box-shadow: 0 -18px 0 -5px rgba(0, 75, 255, 0), 12px -12px 0 -5px rgba(0, 75, 255, 0), 18px 0 0 -5px rgba(0, 75, 255, 0), 12px 12px 0 0 #004BFF, 0 18px 0 0 #004BFF, -12px 12px 0 0 #004BFF, -18px 0 0 -5px rgba(0, 75, 255, 0), -12px -12px 0 -5px rgba(0, 75, 255, 0);
  }
  50% {
    box-shadow: 0 -18px 0 -5px rgba(0, 75, 255, 0), 12px -12px 0 -5px rgba(0, 75, 255, 0), 18px 0 0 -5px rgba(0, 75, 255, 0), 12px 12px 0 -5px rgba(0, 75, 255, 0), 0 18px 0 0 #004BFF, -12px 12px 0 0 #004BFF, -18px 0 0 0 #004BFF, -12px -12px 0 -5px rgba(0, 75, 255, 0);
  }
  62.5% {
    box-shadow: 0 -18px 0 -5px rgba(0, 75, 255, 0), 12px -12px 0 -5px rgba(0, 75, 255, 0), 18px 0 0 -5px rgba(0, 75, 255, 0), 12px 12px 0 -5px rgba(0, 75, 255, 0), 0 18px 0 -5px rgba(0, 75, 255, 0), -12px 12px 0 0 #004BFF, -18px 0 0 0 #004BFF, -12px -12px 0 0 #004BFF;
  }
  75% {
    box-shadow: 0 -18px 0 0 #004BFF, 12px -12px 0 -5px rgba(0, 75, 255, 0), 18px 0 0 -5px rgba(0, 75, 255, 0), 12px 12px 0 -5px rgba(0, 75, 255, 0), 0 18px 0 -5px rgba(0, 75, 255, 0), -12px 12px 0 -5px rgba(0, 75, 255, 0), -18px 0 0 0 #004BFF, -12px -12px 0 0 #004BFF;
  }
  87.5% {
    box-shadow: 0 -18px 0 0 #004BFF, 12px -12px 0 0 #004BFF, 18px 0 0 -5px rgba(0, 75, 255, 0), 12px 12px 0 -5px rgba(0, 75, 255, 0), 0 18px 0 -5px rgba(0, 75, 255, 0), -12px 12px 0 -5px rgba(0, 75, 255, 0), -18px 0 0 -5px rgba(0, 75, 255, 0), -12px -12px 0 0 #004BFF;
  }
}
.mailBox-block {
  box-shadow: 0 3px 10px #E7E9F2;
  max-width: 312px;
  margin: auto;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  height: 488px;
}
.mailBox-block__header {
  border-bottom: 1px solid #E7E9F2;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.header-items {
  justify-content: space-between;
}
.header-items__wrapper {
  display: flex;
  align-items: center;
}
.header-items__count {
  margin-left: 21px;
  font-size: 18px;
  color: #868B9B;
  font-family: "Open Sans Regular", sans-serif;
}
.header-items__count__bold {
  color: #000000;
  font-weight: bold;
}
.header-items__count-number {
  position: relative;
  color: #35393E;
  font-family: "Open Sans Bold", sans-serif;
}
.header-items__count-number__unread {
  z-index: 1;
  position: absolute;
  color: #fff;
  top: -35%;
  left: 24px;
  font-size: 12px;
}
.header-items__count-number__unread:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  top: 0;
  right: -3.5px;
  border-radius: 50%;
  background-color: #14CCFB;
  z-index: -1;
}
.header-items__size {
  width: 24px;
  height: 24px;
  margin-right: 14px;
}
.header-items__delete {
  width: 24px;
  margin-right: 19px;
}

.content-block__header {
  color: #2C2F38;
  padding-top: 70px;
  font-size: 22px;
  padding-bottom: 9px;
  font-family: "Rubik Bold", sans-serif;
}
.content-block__subheader {
  color: #868B9B;
  font-size: 16px;
  padding-bottom: 49px;
  font-family: "Rubik Regukar", sans-serif;
}
.content-block__icon {
  margin: auto;
  width: 115px;
  height: 146px;
  background-image: url("../images/mobile\ use.svg");
}
.content-block-empty {
  max-width: 312px;
  margin: 2px auto 0 auto;
  text-align: center;
}

#_tm_openedEmail .receivedMail-content-cover {
  padding-top: 29px;
}

.margin-none {
  margin-left: 0;
}

.receivedMail-content::-webkit-scrollbar {
  width: 6px;
}

.receivedMail-content::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 100px;
}

.receivedMail-content::-webkit-scrollbar-thumb {
  background-color: #D4D8EB;
  border-radius: 100px;
}

.receivedMail-content {
  height: 400px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.receivedMail-content-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.receivedMail-content-cover--selected {
  background-color: #EEF0F8;
}
.receivedMail-content__wrapper {
  color: #868B9B;
  padding-right: 20px;
}
.receivedMail-content__check {
  display: none;
}
.receivedMail-content__notify {
  display: none;
}
.receivedMail-content__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 15px;
  overflow: hidden;
  font-family: "Rubik Regular", sans-serif;
}
.receivedMail-content__icon__color-004BFF {
  background-color: #004bff;
  color: #FFFFFF;
}
.receivedMail-content__sender {
  font-size: 14px;
  font-family: "Rubik Bold", sans-serif;
}
.receivedMail-content__subject {
  width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  margin-right: 16px;
  font-family: "Rubik Bold", sans-serif;
}
.receivedMail-content__subject-openMail {
  font-family: "Rubik Regular";
}
.receivedMail-content__time {
  font-size: 12px;
  color: #004BFF;
  font-family: "Rubik Bold", sans-serif;
}
.receivedMail-content__time_received {
  font-family: "Rubik Regular";
}
.receivedMail-content__attachment {
  width: 21px;
  height: 18px;
  margin-left: auto;
}
.receivedMail-content__attachment--hidden {
  visibility: hidden;
}
.receivedMail-content__text-unread {
  color: #40485D;
}

.message--container-bold {
  color: #40485D;
}

.receivedMail-content:last-child {
  border-bottom: none;
}

.item-selected {
  background-color: #EEF0F8;
}

.header-edit {
  padding: 13px 0;
}
.header-edit__cover {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}
.header-edit__icon {
  height: 24px;
  margin: 0 9px 0 20px;
}
.header-edit__backBtn {
  font-size: 18px;
  font-family: "Rubik Regular";
}

.content-edit {
  max-width: 264px;
  margin: auto;
}
.content-edit__text {
  margin-top: 84px;
  margin-bottom: 21px;
  color: #868B9B;
  font-family: "Rubik Regular";
  font-size: 14px;
  line-height: 20px;
}
.content-edit__cover {
  display: flex;
  flex-direction: column;
}
.content-edit__login {
  background-color: #EEF0F8;
  padding: 15px 0 15px 22px;
  border: none;
  cursor: text;
  margin-bottom: 11px;
  outline: none;
  font-size: 16px;
  font-family: "Rubik Regular";
  border-radius: 5px;
}
.content-edit__login-selector {
  position: relative;
}
.content-edit__saveBtn {
  padding: 15px 50px;
  width: 137px;
  border-radius: 8px;
  background-color: #004BFF;
  color: #fff;
  font-size: 16px;
  font-family: "Rubik Medium";
}

.items-center {
  align-items: unset;
}

.new-email--domain-option {
  width: 100%;
  border-bottom: 1px solid lightgray;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 48px;
  padding-left: 20px;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.new-email__select-options {
  position: absolute;
  max-width: 486px;
  min-width: 264px;
  width: 100%;
  z-index: 1;
  display: none;
  max-height: 142px;
  overflow-y: auto;
  right: 0;
  top: 47px;
  box-shadow: rgba(51, 93, 96, 0.25) 0px 6px 10px;
}

.show {
  display: block;
}

.open-mail__subject {
  font-size: 14px;
  padding: 18px 0px;
  margin: 19px 27px;
  border-top: 1px solid #E7E9F2;
  border-bottom: 1px solid #E7E9F2;
  color: #40485D;
  font-family: "Rubik Medium";
}
.open-mail__subject-content {
  font-family: "Rubik Regular";
}
.open-mail__text {
  font-size: 14px;
  margin: 0 27px;
  font-family: "Rubik Regular";
  color: #40485D;
  line-height: 20px;
  overflow-y: auto;
  word-break: break-all;
}
.open-mail__attachment {
  padding: 13px 20px;
  max-width: 264px;
  margin: auto;
}

.attachment {
  margin-top: 12px;
  margin-bottom: 10px;
  display: flex;
  background-color: #EEF0F8;
  border-radius: 5px;
  justify-content: space-between;
}
.attachment__name {
  font-size: 14px;
  font-family: "Rubik Medium";
  margin-bottom: 4px;
}
.attachment__size {
  font-family: "Rubik Light";
  font-size: 12px;
}

.content__icon-selected {
  background-image: url("../images/selected.svg");
}

.google-button {
  background-repeat: no-repeat;
  overflow: hidden;
  max-height: 65px;
  width: 223px;
  margin: 42px auto 45px auto;
  display: block;
}

.main-block {
  background-image: url("../images/temp\ bg.svg");
  background-size: cover;
  padding-top: 30px;
  background-position: 30% top;
}
.main-block__header {
  color: #FFFF;
  font-size: 30px;
  font-weight: bold;
  font-family: "Rubik Bold", sans-serif;
  text-align: left;
  line-height: 45px;
  width: 312px;
  margin: 0 auto 14px auto;
}
.main-block__header-desktop-only {
  display: none;
}
.main-block__subheader {
  width: 300px;
  margin: 0 auto;
  font-family: "Open Sans Regular", sans-serif;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.main-block__description-part-2 {
  display: flex;
  flex-direction: column;
}
.main-block__text {
  font-family: "Open Sans Regular", sans-serif;
  color: #FFF;
  font-size: 18px;
  text-align: left;
  width: 312px;
  margin: 0 auto;
  line-height: 27px;
}
.main-block__text-tablet-only {
  display: none;
}
.main-block__poster {
  max-width: 360px;
  width: 100%;
  height: 480px;
  background-image: url("https://i.ibb.co/bz9Vftt/Untitled-design-59.png");
  background-repeat: no-repeat;
  margin: 0 auto;
}

.what-is-temp-mail {
  padding-top: 54px;
  padding-bottom: 63px;
  margin: 0 24px;
}
.what-is-temp-mail__header {
  font-family: "Open Sans Bold", sans-serif;
  font-size: 22px;
  color: #2C2F38;
  position: relative;
  margin-left: 8px;
  letter-spacing: 0.42px;
}
.what-is-temp-mail__header:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px; /* Height of the underline */
  bottom: 2px; /* Adjusted to bring the underline closer */
  left: 0;
  background-image: linear-gradient(to right, 
  #04327a 0%, #04388d 15%, 
  #DB4437 25%, #DB4437 40%, 
  #F4B400 50%, #F4B400 65%, 
  #0F9D58 75%, #0F9D58 90%);
  display: block;
}


.what-is-temp-mail__list {
  margin-top: 45px;
  max-width: 1150px;
}
.what-is-temp-mail__list-item {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
}
.what-is-temp-mail__list-item:last-child {
  margin-bottom: 0;
}

.tile {
  width: 312px;
  height: 491px;
  border-radius: 15px;
  padding: 50px 24px 0;
  box-shadow: 8px 8px 25px #F1F2F8;
}
.tile__icon {
  height: 150px;
  margin: 0 auto 37px;
  display: block;
}
.tile__text {
  font-size: 16px;
  font-family: "Open Sans Regular";
  color: #2C2F38;
}

.why-use-temp-mail {
  background: #EEF9FD;
}
.why-use-temp-mail__header {
  color: #2C2F38;
  font-size: 28px;
  font-family: "Open Sans Bold", sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 55px;
  margin-bottom: 25px;
}
.why-use-temp-mail__header:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px; /* Height of the underline */
  bottom: -5px; /* Adjusted to bring the underline closer */
  left: 0;
  background-image: linear-gradient(to right, 
  #04327a 0%, #04388d 15%, 
  #DB4437 25%, #DB4437 40%, 
  #F4B400 50%, #F4B400 65%, 
  #0F9D58 75%, #0F9D58 90%);
  background-position: center; 
  background-repeat: no-repeat;
  display: block;
}
.use-temp-mail-block {
  padding-bottom: 84px;
}
.use-temp-mail-block__description {
  width: 312px;
  margin: 0 auto 62px auto;
}
.use-temp-mail-block__poster {
  background: url(../images/mobile\ logo\ for\ mob.png) no-repeat center center transparent;
  width: 100%;
  height: 332px;
  background-size: contain;
}

.reasons-to-use {
  font-size: 18px;
  color: #2C2F38;
  font-family: "Open Sans Regular", sans-serif;
  padding-left: 25px;
}
.reasons-to-use__item {
  margin-bottom: 27px;
}
.reasons-to-use__item:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .temp-mail-generator {
    padding: 57px 0 62px 0;
  }
  .temp-mail-generator__header {
    font-size: 40px;
    width: 673px;
    text-align: center;
    margin-bottom: 17px;
  }
  .temp-mail-generator__subheader {
    font-family: "Rubik Regular", sans-serif;
    font-size: 18px;
    text-align: center;
    margin: 0 auto 25px auto;
    max-width: 672px;
    color: #868B9B;
    display: block;
    line-height: 27px;
  }

  .mailBox-block {
    max-width: 672px;
    height: 487px;
  }
  .mailBox-block__header {
    border-bottom: 1px solid #E7E9F2;
  }

  .header-items__size {
    margin-right: 20px;
  }

  .receivedMail-content__wrapper {
    display: flex;
    align-items: center;
  }
  .receivedMail-content__sender {
    width: 85px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 50px;
  }
  .receivedMail-content__sender-openMail {
    margin-right: 2px;
  }
  .receivedMail-content__subject {
    width: 313px;
    font-size: 14px;
    margin-right: 18px;
  }
  .receivedMail-content__subject-openMail {
    margin-right: 50px;
  }
  .receivedMail-content__time {
    margin-left: 25px;
  }

  .wrapper-reverse {
    flex-direction: row-reverse;
  }

  .content-edit {
    max-width: 485px;
  }
  .content-edit__login-selector {
    cursor: pointer;
  }
  .content-edit__saveBtn {
    cursor: pointer;
  }

  .email-block {
    position: relative;
    z-index: 5;
    width: 673px;
    height: 80px;
    margin-bottom: 62px;
  }
  .email-block__wrapper {
    display: flex;
    align-items: center;
    background-image: url("../images/top/2.svg");
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .email-block__genEmail {
    font-size: 22px;
    text-align: left;
    max-width: 400px;
    width: 100%;
    margin: 10px 5px 12px 44px;
  }
  .email-block__edit {
    width: 70px;
    padding-top: 7px;
    margin-left: 26px;
  }
  .email-block__copy {
    margin: 0 8px 0 0;
    width: 135px;
    padding: 6px 0;
    font-size: 16px;
  }
  .email-block__copy-msg {
    top: -40%;
    right: 4%;
    width: 128px;
    height: 42px;
  }
  .email-block__copy__icon {
    width: 25px;
    margin-left: 23px;
  }
  .email-block__deleteEmail {
    margin: 0 19px 0 0;
  }

  .content-edit__text {
    line-height: 24px;
    margin-bottom: 28px;
  }

  .open-mail__text {
    border-bottom: 1px solid #E7E9F2;
    padding-bottom: 24px;
  }
  .open-mail__attachment {
    margin-left: 24px;
  }

  .attachment {
    max-width: 380px;
  }

  .google-button {
    margin: 50px auto 44px auto;
    display: block;
    width: 217px;
  }

  .main-block {
    padding-top: 50px;
    background-position: 40% bottom;
  }
  .main-block__header {
    font-size: 40px;
    text-align: center;
    width: 100%;
    margin: 0 auto 30px auto;
    line-height: initial;
  }
  .main-block__subheader {
    width: 673px;
    text-align: center;
    font-size: 24px;
  }
  .main-block__text {
    font-family: "Rubik Regular", sans-serif;
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    text-align: left;
    width: 673px;
    margin: 0 auto;
  }
  .main-block__text-no-tablet {
    display: none;
  }
  .main-block__text-tablet-only {
    display: inline;
  }
  .main-block__poster {
    max-width: 768px;
    background-image: url("../../../assets/images/main-tep.png");
    background-position: bottom center;
    height: 725px;
    margin-top: 73px;
  }

  .what-is-temp-mail {
    padding-top: 64px;
    margin: 0 24px;
    padding-bottom: 183px;
  }
  .what-is-temp-mail__header {
    text-align: left;
    font-size: 40px;
    width: 650px;
    margin: 0 auto;
  }
  .what-is-temp-mail__header:after {
    width: 168px;
    bottom: 0;
    left: -4px;
  }
  .what-is-temp-mail__list {
    margin: 80px auto 0;
    display: flex;
    flex-wrap: wrap;
  }
  .what-is-temp-mail__list-item {
    padding: 0 20px;
    margin-bottom: 57px;
  }
  .what-is-temp-mail__list-item:last-child {
    position: relative;
  }
  .what-is-temp-mail__list-item:last-child:before {
    content: "";
    display: block;
    position: absolute;
    width: 255px;
    height: 371px;
    right: -67px;
    bottom: -205px;
    background: url(../images/magnet-right.svg) no-repeat center center transparent;
    background-size: contain;
    transform: rotateZ(90deg);
  }

  .tile {
    width: 312px;
    height: 491px;
    border-radius: 15px;
    padding: 50px 24px 0;
    box-shadow: 8px 8px 25px #F1F2F8;
  }
  .tile__icon {
    margin: 0 auto 37px;
  }

  .why-use-temp-mail__header {
    font-size: 40px;
    z-index: 1;
    padding-top: 68px;
    margin-bottom: 59px;
  }
  .why-use-temp-mail__header:before {
    content: "";
    display: block;
    width: 163px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right:  10px ;
    z-index: -1;
  }
  .use-temp-mail-block {
    padding-bottom: 84px;
  }
  .use-temp-mail-block__description {
    width: 669px;
    margin: 0 auto 74px auto;
  }
  .use-temp-mail-block__poster {
    background: url(../images/mobile\ logo\ for\ mob.svg) no-repeat center center transparent;
    height: 652px;
  }

  .reasons-to-use {
    font-size: 18px;
    color: #2C2F38;
    font-family: "Open Sans Regular", sans-serif;
    padding-left: 25px;
  }
  .reasons-to-use__item {
    margin-bottom: 27px;
  }
  .reasons-to-use__item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .temp-mail-generator {
    padding: 106px 0 114px 0;
  }

  .email-block {
    max-width: 640px;
  }
  .email-block__edit {
    cursor: pointer;
    padding-top: 0;
  }
  .email-block__edit:hover .button-tooltip {
    visibility: visible;
    opacity: 1;
  }
  .email-block__copy {
    cursor: pointer;
  }
  .email-block__copy-msg {
    top: 20%;
    right: -23%;
  }
  .email-block__deleteEmail:hover .button-tooltip-dlt {
    visibility: visible;
    opacity: 1;
  }
  .email-block__genEmail {
    max-width: 378px;
    margin: 10px 5px 12px 33px;
  }

  .mailBox-block {
    max-width: 1087px;
  }
  .mailBox-block:before {
    content: "";
    position: absolute;
    display: block;
    width: 170px;
    height: 244px;
    background: url(../images/magnet__left-temp.svg) no-repeat center center transparent;
    background-size: contain;
    left: -108px;
    top: -108px;
  }
  .mailBox-block:after {
    content: "";
    position: absolute;
    display: block;
    width: 220px;
    height: 206px;
    background: url(../images/magnet__right-temp.svg) no-repeat center center transparent;
    background-size: contain;
    right: -72px;
    bottom: -72px;
  }

  .header-items__refresh {
    cursor: pointer;
  }
  .header-items__delete {
    cursor: pointer;
  }

  .receivedMail-content-cover {
    max-width: 1087px;
    cursor: pointer;
  }
  .receivedMail-content-cover--border {
    border-bottom: 1px solid #E7E9F2;
  }

  .google-button {
    margin: 60px auto 0 0;
    width: 223px;
  }

  .receivedMail-content {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .receivedMail-content__check {
    display: block;
    margin-left: 27px;
    z-index: 1;
    margin-right: 26px;
    width: 20px;
    height: 20px;
    border: 2px solid #E7E9F2;
    border-radius: 15px;
  }
  .receivedMail-content__notify {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .receivedMail-content__icon {
    margin-left: 32px;
    margin-right: 65px;
  }
  .receivedMail-content__icon-openMail {
    margin-right: 15px;
  }
  .receivedMail-content__sender {
    margin-right: 138px;
  }
  .receivedMail-content__sender-openMail {
    margin-right: 10px;
  }
  .receivedMail-content__subject {
    margin-right: 205px;
  }
  .receivedMail-content__subject-openMail {
    margin-right: 455px;
  }

  .notify-received {
    background-color: #14CCFB;
  }

  .header-edit__icon {
    margin-left: 25px;
  }

  .content-edit {
    padding-left: 9px;
  }
  .content-edit__text {
    font-size: 16px;
    margin-top: 74px;
    margin-bottom: 28px;
  }

  .main-block {
    padding-top: 0;
    background: url(../images/) no-repeat -385px -415px, url(../images/temp\ bg.webp) no-repeat left top;
  }
  .main-block__header {
    font-size: 40px;
    text-align: left;
    margin: 0 auto 25px auto;
    line-height: 60px;
  }
  .main-block__header-no-desktop {
    display: none;
  }
  .main-block__header-desktop-only {
    display: block;
  }
  .main-block__subheader {
    width: 1180px;
    text-align: center;
  }
  .main-block__description {
    min-width: 450px;
    max-width: 450px;
    margin-left: 35px;
    margin-top: 200px;
  }
  .main-block__description-content {
    margin-left: 18px;
  }
  .main-block__description-part-2 {
    flex-direction: column-reverse;
  }
  .main-block__text {
    font-family: "Open Sans Regular", sans-serif;
    color: #FFF;
    font-size: 18px;
    text-align: left;
    width: initial;
    margin: 0 auto;
  }
  .main-block__content {
    height: 840px;
    display: flex;
    justify-content: flex-end;
    background-color:  #4285F4 0%, #4285F4 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%;
  }
  .main-block__poster {
  background-image: url("../../../assets/images/all-devies.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover' depending on your design */
  max-width: 1035px;
  height: 100%;
  margin: 0 18px 0 0;
}


  .what-is-temp-mail {
    padding-top: 113px;
    padding-bottom: 223px;
  }
  .what-is-temp-mail__list-item:first-child {
    position: relative;
  }
  .what-is-temp-mail__list-item:first-child:before {
    content: "";
    display: block;
    width: 318px;
    height: 298px;
    position: absolute;
    left: -88px;
    bottom: -113px;
    background: url(../images/magnet-left.svg) no-repeat center center transparent;
    background-size: contain;
  }
  .what-is-temp-mail__list-item:last-child {
    position: relative;
  }
  .what-is-temp-mail__list-item:last-child:before {
    content: "";
    display: block;
    position: absolute;
    width: 255px;
    height: 371px;
    right: -100px;
    top: -162px;
    background: url(../images/magnet-right.svg) no-repeat center center transparent;
    background-size: contain;
    transform: inherit;
  }

  .why-use-temp-mail {
    background: url(../images/why-bg.svg) no-repeat center 80px #EEF9FD;
    background-size: 130%;
    padding-top: 53px;
  }
  .why-use-temp-mail__header {
    font-size: 40px;
    z-index: 1;
    padding-top: 0px;
    margin-top: 120px;
    margin-bottom: 87px;
    text-align: left;
  }
  
  .use-temp-mail-block {
    padding-bottom: 93px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    min-width: 1184px;
    max-width: 1368px;
    margin: 0 auto;
    align-items: center;
  }
  .use-temp-mail-block__description {
    width: 610px;
    margin: initial;
  }
  .use-temp-mail-block__poster {
    background: url(../images/mobile\ logo\ for\ desktop.png ) no-repeat center center transparent;
    height: 776px;
    width: 640px;
  }

  .reasons-to-use {
    font-size: 18px;
    color: #2C2F38;
    font-family: "Open Sans Regular", sans-serif;
    padding-left: 0px;
  }
  .reasons-to-use__item {
    margin-bottom: 27px;
  }
  .reasons-to-use__item:last-child {
    margin-bottom: 0;
  }
}
.display-block-js {
  display: block;
}

.display-flex-js {
  display: flex;
}

.display-none-js {
  display: none;
}

.display-none {
  display: none;
}

/*# sourceMappingURL=index.css.map */


.inboxWarpMain .inbox-empty {
  height: 335px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center
}

.inboxWarpMain .inbox-empty .inbox-empty-msg {
  text-align: center
}

.inboxWarpMain .inbox-empty .inbox-empty-msg img,
.inboxWarpMain .inbox-empty .inbox-empty-msg svg {
  margin-bottom: 25px
}

.inboxWarpMain .inbox-empty .inbox-empty-msg p.emptyInboxTitle {
  color: #585d6a;
  font-size: 20px;
  font-family: "Open Sans Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5px
}

.inboxWarpMain .inbox-empty .inbox-empty-msg p {
  color: #8c92a5;
  font-family: Roboto Mono, monospace !important;
  font-weight: 400;
  font-style: normal
}


.site-footer
{
  background-color:#ffff;
  padding:45px 35px 20px;
  font-family: "Open Sans Regular", sans-serif;
  color: #2F3144;
  font-size: 16px;
  text-align: left;
  width: auto;
  margin: 0 auto;
  line-height: 27px;
  box-shadow: 0px 3px 20px #00000029;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5;
 

}
.site-footer hr.small
{
  margin:30px 0
}
.site-footer h6 {
  color: #2F3144;
  font-size: 30px;
  font-weight: bold;
  font-family: "Rubik Bold", sans-serif;
  text-align: left;
  line-height: 45px;
  width: 312px;
  margin: 7px  -3px;
  padding: 0px 0px 10px; /* Bottom padding of 10px */
  letter-spacing: 2px;
  position: relative; /* Needed for positioning the pseudo-element */
}

.site-footer h6::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px; /* Height of the underline */
  bottom: 8px; /* Adjusted to bring the underline closer */
  left: 0;
  background-image: linear-gradient(to right, 
  #04327a 0%, #04388d 15%, 
  #DB4437 25%, #DB4437 40%, 
  #F4B400 50%, #F4B400 65%, 
  #0F9D58 75%, #0F9D58 90%);
  display: block;
}



.site-footer a
{
  color:#2F3144;
}
.site-footer a:hover
{
  color:#2F3144;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#2F3144;
}
.footer-links a {
  position: relative;
  color: #2F3144; /* Set your desired text color */
  text-decoration: none; /* No underline initially */
}

.footer-links a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px; /* Height of the underline */
  bottom: -5px; /* Adjust the position of the underline */
  left: 0;
  color: #FFF;
  background-image: linear-gradient(to right, 
  #093783 0%, #022255 14%, 
  #DB4437 25%, #DB4437 40%, 
  #F4B400 50%, #F4B400 65%, 
  #0F9D58 75%, #079c54 90%);
}

.footer-links a:active::after,
.footer-links a:focus::after {
  color: #FFF;
  background-image: linear-gradient(to right, 
  #002869 0%, #072d69 15%, 
  #DB4437 25%, #DB4437 40%, 
  #F4B400 50%, #F4B400 65%, 
  #0F9D58 75%, #0F9D58 90%);
}


.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right;
  padding: 10px 10px 10px;
  
  
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#fff
}
.copyright-text {
  margin: 0;
  text-align: right;
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}


section {
  padding: 20px;
  }


@media (min-width: 768px) and (max-width: 1024px) {
  .col-xs-6.col-md-3 {
    display: none;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .col-xs-6.col-md-3 {
    display: none;
  }
}

@media (max-width: 767px) {
  .col-xs-6.col-md-3 {
    display: none;
  }
}




/* phone views modify section */

@media (max-width: 767px) {
  .col-xs-6.col-md-3 {
    display: none;
  }

  .why-use-temp-mail__header:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px; /* Height of the underline */
    bottom: -5px; /* Adjusted to bring the underline closer */
    left: 0;
    background-image: linear-gradient(to right, 
    #04327a 0%, #04388d 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%);
    background-position: center; 
    background-repeat: no-repeat;
    display: block;
    margin: 0px 0px 0px 45px;
  
  }

  .what-is-temp-mail__header:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px; /* Height of the underline */
    bottom: 2px; /* Adjusted to bring the underline closer */
    left: 0;
    background-image: linear-gradient(to right, 
    #04327a 0%, #04388d 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%);
    display: block;
    margin: 1px 0px -5px 0px;
  }

  .menu__item--active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0; /* Ensures the element stretches end to end */
    bottom: 0; /* Align to the bottom edge of the menu item */
    height: 2px; /* Height of the underline */
    background: linear-gradient(to right, 
    #4285F4 0%, #4285F4 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%);
    display: block;
    margin: 0px 0px 12px 30px;
    width: 174px;
    
  }

  .menu__item--active:hover::after, .menu__item:hover::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0; /* Ensures the element stretches end to end */
    bottom: 0; /* Align to the bottom edge of the menu item */
    height: 2px; /* Height of the underline */
    background: linear-gradient(to right, 
    #4285F4 0%, #4285F4 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%);
    display: block;
    margin: 0px 0px 12px 30px;
    width: 174px; 
  }

}









/* tab views modify section */


@media (min-width: 768px) and (max-width: 1024px) {

  .copyright-text {
    margin: 10px -232px 0px -151px;
    text-align: center;
  }
    
  .why-use-temp-mail__header:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px; /* Height of the underline */
    bottom: -5px; /* Adjusted to bring the underline closer */
    left: 0;
    background-image: linear-gradient(to right, 
    #04327a 0%, #04388d 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%);
    background-position: center; 
    background-repeat: no-repeat;
    display: block;
    margin: 0px 0px 0px 80px;
  
  }

  .menu__item--active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0; /* Ensures the element stretches end to end */
    bottom: 0; /* Align to the bottom edge of the menu item */
    height: 2px; /* Height of the underline */
    background: linear-gradient(to right, 
    #4285F4 0%, #4285F4 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%);
    display: block;
    margin: 0px 0px 12px 40px;
    width: 174px;
    
  }

  .menu__item--active:hover::after, .menu__item:hover::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0; /* Ensures the element stretches end to end */
    bottom: 0; /* Align to the bottom edge of the menu item */
    height: 2px; /* Height of the underline */
    background: linear-gradient(to right, 
    #4285F4 0%, #4285F4 15%, 
    #DB4437 25%, #DB4437 40%, 
    #F4B400 50%, #F4B400 65%, 
    #0F9D58 75%, #0F9D58 90%);
    display: block;
    margin: 0px 0px 12px 40px;
    width: 174px; 
  }

}