body,
html {
  height: 100%;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
}
* {
  box-sizing: border-box;
}
body {
  font-size: 16px;
  line-height: 140%;
  color: white;
  position: relative;
  background: #0E0F10;
}
/* Sticky footer на десктопі */
@media (min-width: 1024px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  /* Всі елементи крім footer та md-overlay займають доступний простір */
  body > *:not(footer):not(.md-overlay) {
    flex: 1 0 auto;
  }
  /* Обгортка контенту також має займати простір */
  body > .container {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  footer {
    flex-shrink: 0;
    margin-top: auto;
  }
}
img {
  max-width: 100%;
}
button,
input,
select,
textarea {
  outline: none;
  box-sizing: border-box;
}
input,
textarea,
select {
  font-family: 'Geologica', sans-serif;
}
input:focus,
textarea:focus,
select:focus {
  border: 1px solid #252D41;
}
input.error {
  box-shadow: inset 0 0 0px 2px red;
}
input.error ~ label {
  display: none !important;
}
input.error ~ .hint {
  display: block;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input::placeholder,
textarea::placeholder {
  color: #757575;
}
textarea {
  height: 120px;
  resize: none;
}
button {
  font-family: 'Geologica', sans-serif;
  border-radius: 8px;
  background: rgb(0, 149, 246);
  height: 43px;
  padding: 30px 35px;
  border: 0;
  cursor: pointer;
  color: white;
  font-size: 16px;
  font-weight: normal;
}
button:hover {
  background: #16A249;
}
h1,
h2 {
  margin: 0;
  margin-bottom: 0px;
}
a {
  text-decoration: none;
  color: white;
  font-size: 15px;
}
a:hover {
  text-decoration: underline;
  color: white;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.jcsb {
  justify-content: space-between;
}
.flex.aic {
  align-items: center;
}
.container {
  max-width: 1170px;
  padding: 0 35px;
  margin: 0 auto;
}
.caption {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}
h1 {
  line-height: 35px;
  font-size: 40px;
  color: #0195f6;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}
h1 b {
  font-size: 40px;
  color: #0195f6;
  font-weight: 600;
  display: block;
  margin-top: 5px;
}
header {
  position: relative;
  background: #151617;
  padding: 24px 0 18px 0;
}
header .logo {
  width: 200px;
}
header .language {
  position: relative;
  color: #D9D9D9;
}
header .language .current {
  border-radius: 8px;
  background: #303030;
  padding: 8px 16px;
  cursor: pointer;
}
header .language .current span {
  width: 20px;
  height: 20px;
  background: url('../img/icon-lang.svg') center center no-repeat;
}
header .language .current p {
  margin-left: 6px;
}
header .language.active .dropdown {
  display: block;
}
header .language.active .current {
  border-radius: 8px 8px 0 0;
}
header .language .dropdown {
  position: absolute;
  display: none;
  top: 100%;
  right: 0;
  border-radius: 8px 0 8px 8px;
  background: #303030;
  padding: 10px 24px;
  z-index: 1;
}
header .language .dropdown li:first-of-type {
  display: none;
}
header .language .dropdown .item {
  color: #D9D9D9;
  line-height: 240%;
  white-space: nowrap;
  overflow: hidden;
}
.content .top-title {
  text-align: center;
  padding: 80px 0 0 0;
}
.content .top-title p {
  font-size: 24px;
  line-height: 140%;
  color: #D9D9D9;
}
.content .input-form form {
  max-width: 1030px;
  margin: 0 auto;
  position: relative;
}
.content .input-form form input {
  width: 100%;
  border: 4px solid #303030;
  background: #303030;
  height: 72px;
  padding: 18px 150px 18px 32px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 250;
  letter-spacing: -0.08px;
  color: white;
}
.content .input-form form input:focus {
  border: 4px solid rgb(0, 149, 246);
}
.content .input-form form .paste-clear-btn {
  position: absolute;
  top: 50%;
  right: 90px;
  margin-top: -14px;
  height: 28px;
  padding: 0 12px;
  background: none;
  border: 1px dashed #757575;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: 'Geologica', sans-serif;
}
.content .input-form form .paste-clear-btn:hover {
  background: #666;
}
.content .input-form form .paste-clear-btn:active {
  background: #444;
}
.content .input-form form button[type="submit"] {
  position: absolute;
  top: 6px;
  right: 7px;
  border-radius: 36px;
  background: #2b2b2b url(../img/icon-download.svg) center center no-repeat;
  background-size: 27px 27px;
}
.content .bottom-info .about {
  max-width: 770px;
  margin: 40px auto 0;
  text-align: center;
}
.content .bottom-info .about p {
  font-weight: 200;
  margin-top: 10px;
}
.content .bottom-info .faq {
  max-width: 900px;
  margin: 60px auto 40px;
}
.content .bottom-info .faq .faq-list {
  margin-top: 30px;
}
.content .bottom-info .faq .faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #303030;
}
.content .bottom-info .faq .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.content .bottom-info .faq .faq-question {
  font-size: 18px;
  font-weight: 500;
  color: #D9D9D9;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s;
  user-select: none;
}
.content .bottom-info .faq .faq-question:hover {
  color: rgb(0, 149, 246);
}
.content .bottom-info .faq .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: rgb(0, 149, 246);
  transition: transform 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .bottom-info .faq .faq-item.active .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}
.content .bottom-info .faq .faq-answer {
  font-size: 15px;
  font-weight: 300;
  color: #999;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 0;
}
.content .bottom-info .faq .faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 0 20px 0;
  transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}
.content .bottom-info .how-to-use {
  margin: 60px -35px 40px -35px;
}
.content .bottom-info .how-to-use .row {
  gap: 20px;
  color: #999;
  font-weight: 300;
  margin-top: 30px;
}
.content .bottom-info .how-to-use .row .item {
  width: 25%;
  flex: 1;
  padding: 30px 30px 30px 45px;
  position: relative;
  background: #151617;
  border-radius: 15px;
}
.content .bottom-info .how-to-use .row .item .num {
  font-size: 24px;
  color: rgb(0, 149, 246);
  font-size: 28px;
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 32px;
}
.content .bottom-info .how-to-use .row .item span {
  font-size: 20px;
  line-height: 28px;
}
.content .bottom-info .how-to-use .row .item p {
  margin-top: 10px;
  font-weight: 200;
}
.content .music-info {
  max-width: 970px;
  margin: 60px auto 0 auto;
}
.content .music-info .right {
  flex-grow: 1;
}
.content .music-info .right .error-message {
  border-radius: 12px;
  background: #E37083;
  padding: 16px 20px 16px 84px;
  position: relative;
  margin-top: 16px;
}
.content .music-info .right .error-message:before {
  content: '';
  width: 48px;
  height: 48px;
  background: url('../img/icon-error.svg') center center no-repeat;
  position: absolute;
  left: 20px;
  top: 16px;
}
.content .music-info .right .error-message span {
  color: #E7E7E8;
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
footer {
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
  background: #151617;
}
footer p {
  max-width: 970px;
  margin: 5px auto;
  font-weight: 100;
}
.download-btn {
  line-height: 110%;
}
#media-results {
  max-width: 1170px;
  padding: 0 35px;
  margin: 40px auto;
}
.md-overlay {
  width: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  height: 100%;
  visibility: hidden;
}
.close {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
  width: 44px;
  background: url('../img/icon-close.svg') center center no-repeat;
  height: 44px;
  background-size: 100%;
}
.close:hover {
  opacity: 0.8;
}
.input-form {
  margin: 80px 0 60px;
}
@media (max-width: 940px) {
  .content .music-info {
    flex-wrap: wrap;
  }
  .content .music-info .right {
    width: 100%;
  }
  .content .bottom-info .how-to-use {
    margin: 0 0px 0 0px;
  }
  .content .bottom-info .how-to-use .row .item {
    width: 48%;
    flex: auto;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 18px;
  }
  .container {
    max-width: 534px;
    min-width: 360px;
    padding: 0 25px;
  }
  header .language {
    position: static;
  }
  header .language .current {
    background: inherit;
    padding: 0;
    margin-top: -5px;
  }
  header .language .current p {
    display: none;
  }
  header .language .current span {
    width: 35px;
    height: 35px;
    background-size: 100%;
  }
  header .language .dropdown {
    width: 100%;
    border-radius: 0;
    z-index: 1;
    padding: 130px 24px 300px 24px;
    top: 0;
    background: #0E0F10;
    text-align: center;
  }
  header .language .dropdown li:first-of-type {
    display: block;
  }
  .content .top-title {
    padding: 50px 0 0;
  }
  .content .top-title p {
    font-size: 28px;
    line-height: 130%;
  }
  .content .top-title p span {
    margin-top: 20px;
    font-size: 60px;
  }
  .content .input-form form input {
    font-size: 22px;
    padding: 18px 150px 18px 32px;
  }
  .content .input-form form .paste-clear-btn {
    display: flex;
    height: 36px;
    margin-top: -18px;
    right: 80px;
    padding: 0 13px;
    font-size: 14px;
  }
  .content .input-form form button[type="submit"] {
    width: 36px;
    height: 36px;
  }
  .content .music-info {
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .content .music-info .right {
    width: 100%;
  }
  .content .music-info .right .error-message {
    padding: 26px 30px 26px 104px;
  }
  .content .music-info .right .error-message:before {
    width: 54px;
    height: 54px;
    background-size: 100%;
    left: 30px;
    top: 26px;
  }
  .content .music-info .right .error-message span {
    font-size: 32px;
  }
  .content .bottom-info .about {
    text-align: left;
    margin-bottom: 50px;
  }
  .content .bottom-info .about .caption {
    text-align: left;
  }
  .content .bottom-info .faq {
    margin: 40px auto 30px;
  }
  .content .bottom-info .faq .caption {
    text-align: left;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .content .bottom-info .faq .faq-list {
    margin-top: 20px;
  }
  .content .bottom-info .faq .faq-item {
    margin-bottom: 12px;
  }
  .content .bottom-info .faq .faq-question {
    font-size: 16px;
    padding: 15px 35px 15px 0;
  }
  .content .bottom-info .faq .faq-question::after {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }
  .content .bottom-info .faq .faq-answer {
    font-size: 14px;
  }
  .content .bottom-info .faq .faq-item.active .faq-answer {
    padding: 0 0 15px 0;
  }
  .content .bottom-info .how-to-use .caption {
    text-align: left;
    line-height: 40px;
  }
  .content .bottom-info .how-to-use .row {
    margin-left: 10px;
  }
  .content .bottom-info .how-to-use .row .item {
    width: 100%;
    flex: auto;
  }
  .content .bottom-info .how-to-use .row .item span {
    font-size: 28px;
  }
  .content .bottom-info .how-to-use .row .item p {
    font-size: 20px;
  }
  footer p {
    font-size: 16px;
    line-height: 24px;
  }
  .input-form {
    margin: 60px 0 60px;
  }
}

/* RTL Support for Arabic */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] header .container {
  flex-direction: row-reverse;
}

[dir="rtl"] header .language .current {
  flex-direction: row-reverse;
}

[dir="rtl"] header .language .current p {
  margin-left: 0;
  margin-right: 6px;
}

[dir="rtl"] header .language .dropdown {
  right: auto;
  left: 0;
  border-radius: 0 8px 8px 8px;
}

[dir="rtl"] .content .input-form form input {
  padding: 18px 32px 18px 150px;
  text-align: right;
}

[dir="rtl"] .content .input-form form .paste-clear-btn {
  right: auto;
  left: 90px;
}

[dir="rtl"] .content .input-form form button[type="submit"] {
  right: auto;
  left: 7px;
}

[dir="rtl"] .content .bottom-info .faq .faq-question {
  padding: 20px 0 20px 40px;
}

[dir="rtl"] .content .bottom-info .faq .faq-question::after {
  right: auto;
  left: 0;
  transform: rotate(180deg);
}

[dir="rtl"] .content .bottom-info .how-to-use .row .item {
  padding: 30px 45px 30px 30px;
}

[dir="rtl"] .content .bottom-info .how-to-use .row .item .num {
  left: auto;
  right: 18px;
}

[dir="rtl"] .content .bottom-info .how-to-use .row .item .num::before {
  left: auto;
  right: 20px;
}

[dir="rtl"] .content .bottom-info .how-to-use .row .item span {
  text-align: right;
}

[dir="rtl"] .content .bottom-info .how-to-use .row .item p {
  text-align: right;
}

[dir="rtl"] .content .music-info {
  text-align: right;
}

[dir="rtl"] .content .music-info.left {
  text-align: left;
}

[dir="rtl"] .content .music-info.right {
  text-align: right;
}

[dir="rtl"] .content .music-info .download-btn-wrapper {
  left: auto;
  right: 20px;
}

[dir="rtl"] .content .music-info .download-btn-wrapper .download-btn {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .content .music-info .right .error-message {
  padding: 16px 84px 16px 20px;
}

[dir="rtl"] .content .music-info .right .error-message:before {
  left: auto;
  right: 20px;
}

[dir="rtl"] .md-overlay {
  left: auto;
  right: 0;
}

[dir="rtl"] .close {
  right: auto;
  left: 20px;
}

@media (max-width: 1023px) {
  [dir="rtl"] .content .input-form form .paste-clear-btn {
    right: auto;
    left: 80px;
  }
  
  [dir="rtl"] .content .bottom-info .how-to-use .row .item .num::before {
    left: auto;
    right: 30px;
  }
}

@media (max-width: 640px) {
  [dir="rtl"] header .container {
    flex-direction: row;
  }
  
  [dir="rtl"] .content .input-form form input {
    padding: 18px 32px 18px 150px;
  }
  
  [dir="rtl"] .content .input-form form .paste-clear-btn {
    right: auto;
    left: 80px;
  }
  
  [dir="rtl"] .content .input-form form button[type="submit"] {
    right: auto;
    left: 7px;
  }
  
  [dir="rtl"] .content .music-info .right .error-message {
    padding: 26px 104px 26px 30px;
  }
  
  [dir="rtl"] .content .music-info .right .error-message:before {
    left: auto;
    right: 30px;
  }
  
  [dir="rtl"] .content .bottom-info .about {
    text-align: right;
  }
  
  [dir="rtl"] .content .bottom-info .about .caption {
    text-align: right;
  }
  
  [dir="rtl"] .content .bottom-info .faq .caption {
    text-align: right;
  }
  
  [dir="rtl"] .content .bottom-info .faq .faq-question {
    padding: 15px 0 15px 35px;
  }
  
  [dir="rtl"] .content .bottom-info .how-to-use .caption {
    text-align: right;
  }
  
  [dir="rtl"] .content .bottom-info .how-to-use .row {
    margin-left: 0;
    margin-right: 10px;
  }
}

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