/* Font Family ***********************************************************************/
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --white: #ffffff;
  --black: #000000;
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}

.tip-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.tip-popup .popup-bg {
  width: 100%;
  height: 100%;
  background-image: url(../images/popup-bg.png);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 1;
  /* filter: blur(3px); */
}
.tip-popup  .popup-box {
    width: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tip-popup  a {
  position: absolute;
  max-width: 500px;
  width: 90%;
  max-height: calc(100dvh - 100px);
  overflow: auto;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tip-popup .popup-box .logo {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.tip-popup .popup-box .title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.tip-popup .popup-box .subscribers {
  color: #808080;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.tip-popup .popup-box .benifits-list .benifits-list-item {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 5px;
  text-transform: capitalize;
  text-align: center;
}

.tip-popup .popup-box .telegram-link {
  background-color: #2381cb;
  border: 1px solid #2381cb;
  color: var(--white);
  border-radius: 30px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 30px;
  padding: 10px 20px;
  margin: 20px 0;
  transition: all 0.3s ease-in-out;
}

.tip-popup .popup-box .telegram-link:hover {
  background-color: var(--white);
  color: #2381cb;
}

.tip-popup .popup-box .preview-channel {
  color: #808080;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

a.telegram-btn {
  background: rgb(5, 177, 245);
  border-radius: 50px;
  padding: 13px 20px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  margin-top: 10px;
}

@media screen and (max-width: 414px) {
  .tip-popup .popup-box {
    max-height: calc(100dvh - 60px);
    padding: 15px;
  }
  a.telegram-btn {
    font-size: 19px;
    margin-top: 0px;
  }
  .tip-popup .popup-box .logo {
    width: 100px;
    height: 100px;
  }
}
