/* Reset start */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: black;
    font: 400 14px/1 'Roboto', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}
/* Reset end */

/* fonts */
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }

  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }

  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  /* end fonts */

/* Default classes start */

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

/* Default classes end */

  .container {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
  }

  #header {

    border-top: 6px solid #01ffff;
    background-color: #ffffff;
    position: sticky;
    top: 0px;
    z-index: 99;
  }

  .logo {
    padding: 20px 0;
    min-width: 20%;
  }

  .header-advertisement-block {
    height: 110px;
    padding: 2px 10px;
  }

  .mobile-header-advertisement-block {
    position: fixed;
    top: 5px;
    left: 0px;
    width: 100%;
    height: 90px;
    margin: auto;
    background-color: #f8f8f8;;
  }

  .header-menu {
    min-width: 65%;
    color: #737373;
  }

  .header-menu ul {
    justify-content: space-between;
  }

  .header-menu li {
    display: block;
  }

  .header-menu li a {
    padding: 10px;
  }

  /* menu dropdown */

  :root {

    --dropdown-highlight: #1e99b9;;;
    --dropdown-width: 160px;
    --dropdown-background: white;
    --dropdown-color: #5e5e5e;;
    --top-offset-mobile-down-menu: 0px; /* Настройка начальной высоты нижнего меню*/
    --left-offset-mobile-down-menu: 50%;
  }


  /* Boring button styles */
  a.button {
    border: 1px solid lightgrey;
    border-radius: 15px;
    padding: 8px;
    font-size: xx-large;
    color: #8e8e8e;
    margin-right: 25px;
    cursor: pointer;
  }

  a.button:active {
    filter: brightness(75%);
  }

  /* Dropdown styles */
  .dropdown {
    position: relative;
    padding: 0;
    margin-right: 1em;

    /* border: none; */
  }

  .dropdown summary {
    list-style: none;
    list-style-type: none;
  }

  .dropdown > summary::-webkit-details-marker {
    display: none;
  }

  .dropdown summary:focus {
    outline: none;
  }

  .dropdown summary:focus a.button {
    border: 2px solid lightgray;
  }

  .dropdown summary:focus {
    outline: none;
  }

  .dropdown ul {
    position: absolute;
    margin: 20px 0 0 0;
    padding: 20px 0;
    width: var(--dropdown-width);
    left: 10%;
    margin-left: calc((var(--dropdown-width) / 2)  * -1);
    box-sizing: border-box;
    z-index: 2;

    background: var(--dropdown-background);
    border-radius: 6px;
    list-style: none;
  }

  .dropdown ul li {
    padding: 0;
    margin: 0;
  }

  .dropdown ul li+li {
    border-top: 1px solid rgb(223, 223, 223);
  }

  .dropdown ul li a:link, .dropdown ul li a:visited {
    display: inline-block;
    padding: 10px 0.8rem;
    width: 100%;
    box-sizing: border-box;

    color: var(--dropdown-color);
    text-decoration: none;
    text-align: center;
  }

  .dropdown ul li a:hover {
    background-color: var(--dropdown-highlight);
    color: var(--dropdown-background);
  }

  /* Dropdown triangle */
  .dropdown ul::before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--dropdown-background) transparent;
  }


  /* Close the dropdown with outside clicks */
  .dropdown > summary::before {
    display: none;
  }

  .dropdown[open] > summary::before {
      content: ' ';
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      z-index: 1;
  }

@media (max-width: 1200px) {

.header-menu {
  display: none;
}

.dropdown {
  width: 70%;
}

.dropdown summary {
  direction: rtl;
}

.dropdown ul {
  width: 90%;
  margin-left: 0px;
  font-size: inherit;
  border: solid 1px black;
}

.dropdown ul li {
  padding: 25px;
}


.dropdown ul li:hover {
  background-color: #1e99b9;
}

.dropdown ul::before {
  display: none;
}

}

  /* end menu dropdown */

  /* Index page */

  .index-page-service-block-title {
    font-size: xx-large;
    margin-bottom: 40px;
  }

  .index-page-service-block-segment {
    text-align: center;
    margin-bottom: 40px;
  }

  .index-page-service-block-segment > a > img {
    display: block;
    margin: auto;
    margin-bottom: 15px;
  }

  .index-page-first-line-wrapper {
    background-color: black;
    color: white;
    justify-content: space-between;
    font-size: xx-large;
    line-height: 1.1;
    padding-left: 7%;
    padding-right: 10%;
    margin-bottom: 40px;
  }

  .index-page-first-line-wrapper-block-left {
    max-width: 454px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .index-page-first-line-wrapper-block-left-title {
    color: #7BE3FE;
    display: block;
    margin-bottom: 25px;
  }

  .index-page-first-line-wrapper-block-left-button > a:nth-child(1) {
    padding: 3px 15px;
    border: 1px solid white;
  }

  .index-page-first-line-wrapper-block-right {
    min-width: 256px;
    align-self: center;
  }

@media (max-width: 1200px) {

.index-page-first-line-wrapper {
  display: none;
}

.adv-cash-free-2-main-block-line-block-textblock-card-name {
  font-size: x-large;
}

.adv-cash-free-2-main-block-line-block-textblock-bank-name {
  font-size: xx-large;
}

.adv-cash-free-2-main-block-line-block-textblock-description {
  font-size: large;
}

.index-page-service-block-row {
  flex-direction: column;
}

}


  /* end index page */

  .description-box-1 {
    background-color: black;
    color: white;
    padding: 25px 40px;
    margin-bottom: 25px;
  }

  .description-box-1-text-1 {
    padding-bottom: 25px;
    font-size: x-large;
  }

  .description-box-1-text-2 {
    padding-bottom: 25px;
    display: block;
    font-size: xx-large;
  }

  .description-box-2-3-wrapper {
    min-height: 260px;
    margin-bottom: 30px;
  }

  .description-box-2 {
    background-color: #7be3fe;
    min-height: 100%;
    width: 49%;
    border-radius: 6px;
    padding: 25px;
  }

.description-box-2-text {
  width: 55%;
}

.description-box-2-title {
  font-size: x-large;
  padding-bottom: 25px;
}

.description-box-2-text-1 {
  font-size: 18px;
  padding-bottom: 25px;
}

.description-box-2-text-2 {
  font-size: 18px;
  padding-bottom: 25px;
}

.description-box-2-image {
  height: fit-content;
  align-self: flex-end;
  max-width: 45%;
}

.additional-information-wrapper {
  margin-bottom: 10px;
}

.additional-information-title {
  padding: 25px 0px;
  width: 50%;
}

.additional-information-title-text {
  font-size: xx-large;
}

.additional-information-title-button {
  font-size: large;
  margin: auto;
  width: 167px;
  line-height: 1.3;
  background-color: red;
  color: white;
  text-align: center;
  border-radius: 6px;
}

.additional-information-title-button a {
  display: inline-block;
  padding: 10px;
}

.additional-information-body-wrapper {
  margin-bottom: 45px;
}

.additional-information-body-line {
  padding: 10px 0px;
}

.additional-information-body-line-title {
  background-color: #eeeeee;
  width: 50%;
  padding: 10px;
  display: table;
}

.additional-information-body-line-title span {
  display: table-cell;
  vertical-align: middle;
}

.additional-information-body-line-text {
  background-color: #eeeeee;
  width: 50%;
  padding: 10px;
  font-size: larger;
}

@media (max-width: 1200px) {

  .description-box-1-text-2 {
    font-size: large;
  }

  .description-box-2-3-wrapper {
    flex-direction: column;
  }

  .description-box-2 {
    width: unset;
  }

  .description-box-2-3-wrapper > div+div {
    margin-top: 20px;
  }

  .additional-information-title-text {
    font-size: large;
  }
}

/* advert cash back block */
.adv-cash-back-wrapper {
  background-color: #fafafa;
  border: 1px solid;
  border-color: #e7dede;
  justify-content: space-evenly;
  padding: 15px 25px 15px 50px;
  margin-bottom: 50px;
}

.adv-cash-back-wrapper > div {
  width: 25%;
}

.adv-cash-back-1-block img {
  display: block;
  margin: auto;
}

.adv-cash-back-1-block-title {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.adv-cash-back-2-block {
  position: relative;
  padding-left: 30px;
}

.adv-cash-back-2-block-button {
  border: 1px solid;
  font-size: xx-large;
  width: fit-content;
  position: absolute;
  top: 50%;
}

.adv-cash-back-2-block-button a {
  padding: 5px 20px;
  display: inline-block;
}

.adv-cash-back-3-block {
	display: flex;
	align-items: center;
	justify-content: right;
	padding-right: 40px;
}

.adv-cash-back-3-block img {
  width: fit-content;
  height: fit-content;
}

.adv-cash-back-4-block {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 25px 0px;
  font-size: large;
}

.adv-cash-back-4-block span {
  display: block;
}

@media (max-width: 1200px) {
  .adv-cash-back-wrapper {
    flex-flow: column;
  }

  .adv-cash-back-wrapper > div {
    width: 100%;
  }

  .adv-cash-back-1-block {
    margin-bottom: 30px;
  }

  .adv-cash-back-2-block {
    padding-left: 0px;
  }

  .adv-cash-back-2-block-button {
    position: relative;
    margin: auto;
  }

  .adv-cash-back-3-block, .adv-cash-back-4-block {
    display: none;
  }


}

/* end advert cash back block */

/* article-template */
.article-block-wrapper {
  margin-bottom: 50px;
  max-width: 70%;
}

.article-block-image-1 > img {
  border-radius: 10px;
  min-width: 100%;
  margin-bottom: 10px;
}

.article-block-image-2 {
  width: 85%;
  margin: auto;
}

.article-block-image-2 > img {
  border-radius: 10px;
  width: 100%;
}

.article-block-link-under-picture_1 {
  color: gray;
  margin-bottom: 10px;
}

.article-block-title-wrapper {
  background-color: #f8f8f8;
  text-align: center;
  padding: 50px 50px 15px 50px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.article-block-title {
  margin: auto;
  max-width: 60%;
  justify-content: center;
}

.article-block-title > h1 {
  margin-bottom: 35px;
  font-size: x-large;
  line-height: 1.4;
}

.article-block-data {
  color: gray;
  margin-bottom: 10px;
}

.article-block-author {
  color: gray;
  margin-bottom: 20px;
}

.article-block-body {
  font-size: large;
  text-align: justify;
  line-height: 150%;
  letter-spacing: 0.1ex;
  margin-top: 20px;
}

.article-block-body div+div {
  margin-top: 20px;
}

.article-block-body a {
  color: blue;
}

.article-list-of-programs-os {
  font-size: medium;
  color: gray;
}

.article-list-of-programs-level-1 {
  justify-content: space-between;
}

.article-list-of-programs-level-1-short-description {
  width: 60%;
}

.article-list-of-programs-level-1-image-1 {
  width: 30%;
}

.article-list-of-programs-level-1-image-1 img {
  border-radius: 15px;
}

.article-list-of-programs-program-description-3 {
  margin-bottom: 30px;
}

.article-block-14 > p {
  display: inline-block;
}

.article-block-side-bar-wrapper {
  width: 350px;
}

.article-block-side-bar {
  position: sticky;
  top: 100px;
  margin: auto;
  text-align: center;
  padding-left: 5px;
}

@media (max-width: 1200px) {

  .article-block-title {
    max-width: unset;
  }

  .article-block-image-2 {
    width: 100%;
  }

}

@media (max-width: 1000px) {

  .article-block-side-bar-wrapper {
    display: none;
  }


  .article-block-wrapper {
    max-width: unset;
  }

}


/* adv-news */

.adv-news-wrapper img {
  margin-bottom: 25px;
}

.adv-news-title {
  margin-bottom: 40px;
  font-size: xx-large;
}

.adv-news-wrapper {
  text-align: justify;
}

.adv-news-wrapper span {
  display: block;
}

.adv-news-wrapper hr {
  color: #e7dede;
}

.adv-news-line {
  justify-content: space-between;
  margin-bottom: 15px;
}

.adv-news-line > div {
  width: 25%;
}

.adv-news-line-block-1 {
  cursor: pointer;
}

.adv-news-line-block-news {
  height: 50%;
  cursor: pointer;
}

.adv-news-block-title {
  font-size: large;
  line-height: 1.2;
  letter-spacing: 1.1px;
  margin-bottom: 15px;
}

.adv-news-block-data {
  margin-bottom: 25px;
}

@media (max-width: 1200px) {

  .adv-news-line {
    flex-flow: column;
  }

  .adv-news-line > div {
    width: 100%;
  }

  .adv-news-wrapper img {
    width: 100%;
  }

  .adv-news-wrapper hr {
   display: none;
  }

  .adv-news-block-title {
    font-size: 19px;
  }

}

/* end adv-news */

/* adv_cash_free_2 */

.adv-cash-free-2-wrapper {
  margin-bottom: 40px;
}

.adv-cash-free-2-wrapper > h2 {
  margin-bottom: 25px;
}

.adv-cash-free-2-main-block-wrapper > div+div {
  margin-top: 15px;
}

.adv-cash-free-2-main-block-line {
  justify-content: space-between;
}

.adv-cash-free-2-main-block-line-block {
  position: relative;
  border: 1px solid #E7DEDE;
  width: 49%;
  border-radius: 10px;
  justify-content: space-between;
  padding: 20px 30px;
  cursor: pointer;
}

.adv-cash-free-2-main-block-line-block-textblock{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-right: 35px;
}

.adv-cash-free-2-main-block-line-block-textblock-card-name {
  font-size: large;
}

.adv-cash-free-2-main-block-line-block-textblock-bank-name {
  font-size: x-large;
}

.adv-cash-free-2-main-block-line-block-image {
  min-width: fit-content;
}

@media (max-width: 1200px) {

  .adv-cash-free-2-main-block-line {
    flex-wrap: wrap;
  }

  .adv-cash-free-2-main-block-line-block {
    min-width: 100%;
    margin-bottom: 15px;
  }

  .adv-cash-free-2-main-block-line-block-textblock {
    margin-right: 15px;
  }

  .adv-cash-free-2-main-block-line-block-textblock p {
    margin-bottom: 20px;
  }

  .adv-cash-free-2-main-block-line-block-image {
    max-width: 25%;
    min-width: 25%;
  }

  }

/* end adv_cash_free_2 */

/* credit-card-list */

.credit-card-list-page-first-line-wrapper {
  background-color: black;
  color: white;
  justify-content: space-between;
  font-size: xx-large;
  line-height: 1.1;
  padding-left: 7%;
  padding-right: 10%;
  margin-bottom: 40px;
}

.credit-card-list-page-first-line-wrapper-block-left {
  max-width: 640px;
  padding-top: 30px;
}

.credit-card-list-page-first-line-wrapper-block-left-title {
  color: #7BE3FE;
  display: block;
  margin-bottom: 45px;
}

.credit-card-list-page-first-line-wrapper-block-left-description {
  font-size: large;
  margin-bottom: 30px;
}

.credit-card-list-page-first-line-wrapper-block-right {
  min-width: 256px;
  align-self: center;
}

.credit-card-list-page-main-block-wrapper {
  margin-bottom: 30px;
}

.credit-card-list-page-main-block-wrapper > span {
  border: 1px solid;
  background-color: #D9D9D9;
  border-radius: 10px;
  padding: 2px 10px;
  margin-bottom: 30px;
  display: inline-block;
  margin-right: 20px;
}

.credit-card-list-page-main-block-line {
  border: 1px solid;
  background-color: #F9FFFF;
  justify-content: space-between;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
}

.credit-card-list-page-main-block-line > div {
  width: 30%;
}

.credit-card-list-page-main-block-line > div+div {
  margin-left: 30px;
}

.credit-card-list-page-main-block-line p {
  margin: auto;
  width: fit-content;
  text-align: center;
}

.credit-card-list-page-main-block-line p+p {
  margin-top: 10px;
}

.credit-card-list-page-main-block-line-block-left-card-name {
  font-size: x-large;
}

.credit-card-list-page-main-block-line-block-left-bank-name {
  font-size: 21px;
}

.credit-card-list-page-main-block-line-block-title {
  font-weight: bold;
}

.credit-card-list-page-main-block-button {
  display: block;
  width: max-content;
  margin: 0 25px 25px auto;
  padding: 5px 15px;
  font-size: larger;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
}

@media (max-width: 1200px) {

  .credit-card-list-page-main-block-line {
    flex-direction: column;
  }

  .credit-card-list-page-main-block-line > div {
    width: 100%;
  }

  .credit-card-list-page-main-block-line > div+div {
    margin-left: 0px;
    margin-top: 20px;
  }

  .credit-card-list-page-first-line-wrapper {
    display: none;
  }

  .credit-card-list-page-main-block-line-block-description {
    font-size: larger;
  }


}


/* end Credit card list */

/* news list */

.articles-list-page-first-line-wrapper{
  background-color: #F8F8F8;
  min-height: 141px;
  margin-bottom: 20px;
}

.articles-list-page-first-line-title {
  margin: auto;
  font-size: x-large;
  letter-spacing: 1px;
}

.articles-list-page-main-block-wrapper > div+div {
  margin-top: 20px;
}

.articles-list-page-main-block-articles {
  cursor: pointer;
}

.articles-list-page-main-block-articles-data {
  font-size: smaller;
  color: #9D9D9D;
  margin-bottom: 10px;
}

.news-list-page-main-block-news > img {
  margin-right: 5px;
}

.articles-list-page-main-block-articles-title {
  display: inline-block;
  font-size: large;
}

.articles-list-page-main-block-articles-title::before {
  content: '>>';
  margin-right: 20px;
}

@media (max-width: 1200px) {
  .articles-list-page-main-block-articles-data {
    font-size: larger;
  }

  .articles-list-page-main-block-articles-title {
    font-size: x-large;
  }
}

/* Pagination */

.pagination-wrapper {
  margin-bottom: 100px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border-radius: 15px;
}
.pagination a.active {
  background-color: #7be3fe;
}
.pagination a:hover:not(.active) {background-color: #ddd;}
/* End pagination */

/* footer */

.footer-wrapper {
  margin-bottom: 30px;
}

.footer-wrapper p {
  margin: auto;
  text-align: center;
  color: rgb(94, 93, 93);
}

.footer-wrapper p+p {
  margin-top: 25px;
}

/* end footer */

/* about page */
.about-page-main-block-wrapper {
  margin-bottom: 50px;
}

.about-page-main-block-1, .about-page-main-block-2, .about-page-main-block-3 {
  background-color: #f83a3a;
  color: white;
  font-size: x-large;
  justify-content: space-between;
  position: relative;
}

.about-page-main-block-2 {
  background-color: white;
  color: black;
}

.about-page-main-block-1-title, .about-page-main-block-2 p, .about-page-main-block-3 p {
  margin: auto 35px;
  max-width: 50%;
  line-height: 1.4;
  padding: 65px 0px;
}

.about-page-main-block-1-image {
  position: absolute;
  right: 0px;
  top: 35%;
  z-index: 1;

}

@media (max-width: 1200px) {
  .about-page-main-block-1-image {
    max-width: 40%;
  }
}


/* end about page */

/* feedback page */
.feedback-page-main-block-wrapper {
  background-color: #f8f8f8;
  padding: 25px;
  margin-bottom: 40px;
}

.feedback-page-main-block-1-title {
  font-size: x-large;
  padding: 20px;
}

.feedback-page-main-block-1-text {
  max-width: 70%;
  font-size: large;
  padding: 20px;
  line-height: 1.3;
}

/* end feedback page */


/* video_cutter */

.container_video_cutter {
  padding-left: 10px;
  padding-right: 10px;
  background: linear-gradient(rgb(199, 2, 189), blue);
}


/* upload_page */

.video_cutter_upload_wrapper,
.video_cutter_preview_wrapper,
.video_cutter_download_wrapper {
  height: fit-content;
  width: 100%;
  padding-top: 40px;
	padding-bottom: 10px;
  margin: auto;
  max-width: 1170px;
}

.video_cutter_upload_main_title,
.video_cutter_preview_main_title,
.video_cutter_download_main_title {
    color: #ecad06;
    margin: 0px auto 55px;
    width: fit-content
}

.video_cutter_select_button_comment {
  margin: auto;
  width: fit-content;
  color: #ecad06;
	font-size: 23px;
	margin-bottom: 23px;
  text-align: center;
}

.video_cutter_select_btn_wrapper {
	width: fit-content;
	margin: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}

.video_cutter_upload_captcha_wrapper {
	display: flex;
	flex-direction: column;
	width: fit-content;
	margin: auto;
	font-size: 16px;
	border: #ecad06 solid;
	padding: 5px;
	border-radius: 10px;
	color: #ecad06;
}

.video_cutter_upload_captcha_label span {
	display: block;
}

.video_cutter_upload_captcha_content {
	display: flex;
}

.video_cutter_upload_captcha_content img {
	margin-right: 5px;
}

.video_cutter_upload_btn_wrapper {
    width: fit-content;
    margin: auto;
    margin-bottom: 35px;
}

#MyUploadVideoCutter {
  display: none;
}

#progressContainerVideoCutter {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 15px;
  display: none;
  max-width: 70%;
}

#progressContainerVideoCutter > p {
  color: #dea017;
  font-size: 20px;
}

#progressBarVideoCutter {
  border-radius: 10px;
  background-color: lightgray;
  height: 30px; width: 100%;
  border: 5px solid green;
}

#progressFill {
  border-radius: 5px;
  background-color: #dea017;
  height: 100%; transition: width .5s ease-in-out;
  font-size: 19px;
  text-align: center;
  white-space: nowrap;
}



.video_cutter_upload_button,
.video_cutter_custom_browse_btn,
#startTrimButton,
#endTrimButton,
.video_cutter_preview_form_submit_button {
  color: #ffffff;
  border: 6px solid;
	background-color: #1208cc;
	border-bottom-color: #ecad06;
	border-top-color: #ecad06;
	border-left-color: #ecad06;
	border-right-color: #ecad06;
	text-align: center;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 0px;
	line-height: 1.5;
	box-shadow: 11px 17px 9px 7px rgba(0, 0, 0, 0.25);
	border-radius: 28px;
	padding: 8px 25px;
  cursor: pointer; /* Курсор руки */
  user-select: none; /* Запрет выделения текста */
}

#startTrimButton,
#endTrimButton {
  margin-bottom: 20px;
}

.video_cutter_upload_button:hover,
.video_cutter_custom_browse_btn:hover,
#startTrimButton:hover,
#endTrimButton:hover,
.video_cutter_preview_form_submit_button:hover {
	box-shadow: 15px 22px 9px 7px rgba(0, 0, 0, 0.25);
	border: 6px solid;
}

.video_cutter_upload_button:active,
.video_cutter_custom_browse_btn:active,
#startTrimButton:active,
#endTrimButton:active,
.video_cutter_preview_form_submit_button:active {
	box-shadow: 5px 11px 9px 7px rgba(0, 0, 0, 0.25);
}


#selectedFileName {
  font-size: 25px;
  color: #ecad06;
	width: fit-content;
	margin: 0px auto 30px;
  text-align: center;
  text-decoration: underline;
}

.fade-out {
  animation: fadeOut 5s linear forwards;
	width: fit-content;
  margin: 20px auto 25px;
	color: rgba(241, 118, 35, 0.932);
	font-size: 24px;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.video_cutter_upload_license_link_text {
	color: #ecad06;
	font-size: 14px;
	text-align: center;
  margin-bottom: 20px;
}
.video_cutter_upload_license_link_text a {
	color: #ecad06;
	text-decoration: underline;
}


#video_cutter_upload_waiting_message {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; /* Выравнивание текста внутри блока */
	background-color: aliceblue;
	padding: 10px 20px;
	border-radius: 20px;
	border: black;
	border-width: 6px;
	color: rgb(82, 78, 78);
}

#video_cutter_upload_waiting_message_text {
  display: inline-block;
	font-size: 30px;
  margin-right: 5px;
}

.video_cutter_upload_waiting_message_spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-top: 3px solid #ec40ec;
  border-right: 3px solid transparent;
  animation: video_cutter_upload_waiting_message_spin 1s linear infinite;
}

@keyframes video_cutter_upload_waiting_message_spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1200px) {

  .video_cutter_upload_wrapper,
  .video_cutter_preview_wrapper,
  .video_cutter_download_wrapper {
    padding-top: 25px;
  }

  .video_cutter_upload_main_title {
    text-align: center;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .video_cutter_select_button_comment {
    font-size: 15px;
  }

  .fade-out {
    animation: fadeOut 5s linear forwards;
    width: fit-content;
    margin: 10px auto 10px;
    color: rgba(241, 118, 35, 0.932);
    font-size: 12px;
  }

  .video_cutter_upload_button,
  .video_cutter_custom_browse_btn,
  #startTrimButton,
  #endTrimButton,
  .video_cutter_preview_form_submit_button {
    border: 3px solid;
  }

  .video_cutter_upload_button:hover,
  .video_cutter_custom_browse_btn:hover,
  #startTrimButton:hover,
  #endTrimButton:hover,
  .video_cutter_preview_form_submit_button:hover {
    box-shadow: 15px 22px 9px 7px rgba(0, 0, 0, 0.25);
    border: 3px solid;
  }

  #selectedFileName {
    font-size: 10px;
    margin: 0px auto 20px;
  }

  .video_cutter_upload_license_link_text {
    font-size: 9px;
    margin: 0px 10px;
  }

  #video_cutter_upload_waiting_message_text {
    font-size: 12px;
  }

  .video_cutter_upload_waiting_message_spinner {
    width: 12px;
    height: 12px;
    border-top: 2px solid #ec40ec;
    border-right: 2px solid transparent;
    padding: 6px 6px;
  }

}

.video_cutter_upload_warning_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; /* Выравнивание текста внутри блока */
	background-color: aliceblue;
	padding: 10px 20px;
	border-radius: 20px;
	border: black;
	border-width: 6px;
	color: rgb(82, 78, 78);
}

/* end_upload_page */

/* preview_page */

.video_cutter_preview_wrapper {
	padding-top: 1px;
}

.video_cutter_preview_main_title {
	margin-bottom: 10px;
  margin-top: 10px;
  font-size: 20px;
}

.video_cutter_preview_content_wrapper {
  margin-bottom: 20px;
}

.video_cutter_preview_video_content {
	max-width: 45%;
	margin-left: 50px;
  text-align: center;
}

#myVideo {
	max-width: 100%;
  max-height: 45vh;
	object-fit: contain;
  margin-bottom: 10px;
}

.video_cutter_preview_custom_play_button_seek_slider {
  justify-content: space-between;
  padding-bottom: 10px;
}

#video_cutter_preview_play_button {
  display: block;
  padding: 4px 12px;
  background-color: #3B88C3;
  color: #7401d9;
  border: none;
  cursor: pointer;
  font-size: 31px;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 15px;
}

#video_cutter_preview_play_button:hover {
  background-color: #ee7409;
}

#video_cutter_preview_custom_seek_slider {
  width: 100%;
  margin-right: 10px;
}

.video_cutter_preview_current_time {
	font-size: 23px;
    color: #ecad06;
	margin-bottom: 6px;
}

.video_cutter_preview_current_time_comment {
	font-size: 14px;
	color: #ecad06;
	margin-bottom: 25px;
}

.video_cutter_preview_control_panel {
	width: 50%;
}

.video_cutter_preview_buttons_wrapper {
	justify-content: space-around;
    margin-bottom: 20px;
}

.video_cutter_preview_buttons_wrapper p {
	color: #ecad06;
	text-align: center;
	font-size: 14px;
}

.video_cutter_preview_form_content {
	justify-content: space-around;
	color: #ecad06;
	font-size: 18px;
	margin-bottom: 12px;
}

.video_cutter_preview_form_content_labels {
  justify-content: space-evenly;
}

.video_cutter_preview_input_start_time_wrapper,
.video_cutter_preview_input_end_time_wrapper {
	width: fit-content;
    margin: auto;
}

.video_cutter_preview_input_time {
    width: 140px;
    color: #ecad06;
    background-color: #1208cc;
    margin: 10px;
    font-size: 20px;
    border-radius: 20px;
    padding: 5px 12px;
    font-weight: bold;
}

.video_cutter_preview_form_submit_button_wrapper {
	margin: auto;
	width: fit-content;
	margin-bottom: 20px;
}

.video_cutter_preview_form_content_error_message {
	width: fit-content;
	margin: auto;
	color: #ecad06;
	font-size: 20px;
	margin-bottom: 25px;
	text-align: center;
}

.video_cutter_preview_instruction {
	margin: auto;
	color: #2bc8e2;
  	width: fit-content;
}

.video_cutter_preview_instruction details {
	cursor: pointer;
}

@media (max-width: 1200px) {

  .video_cutter_preview_main_title {
    margin-bottom: 20px;
    font-size: 12px;
    text-align: center;
  }

  .video_cutter_preview_content_wrapper {
    flex-direction: column;
  }

  .video_cutter_preview_video_content {
    max-width: 88%;
    margin: auto;
  }

  #video_cutter_preview_play_button {
    font-size: 16px;
    margin: 0 5px;
    padding: 4px 7px;
  }

  .video_cutter_preview_current_time,
  .video_cutter_preview_form_content_labels {
    font-size: 14px;
  }

  .video_cutter_preview_current_time_comment {
    font-size: 10px;
  }

  .video_cutter_preview_label_for_input_start_time_wrapper {
    margin-right: 10px;
  }

  #id_start_time_df,
  #id_end_time_df {
    width: 85%;
  }

  .video_cutter_preview_start_trim_button {
    margin-right: 10px;
  }

  .video_cutter_preview_buttons_wrapper  p {
    font-size: 10px;
  }

  .video_cutter_upload_button,
  .video_cutter_custom_browse_btn,
  #startTrimButton,
  #endTrimButton,
  .video_cutter_preview_form_submit_button {
    font-size: 12px;
    padding: 2px 10px;
    white-space: nowrap;
  }

  .video_cutter_custom_browse_btn label {
    white-space: nowrap;
    text-align: center;
  }

  .video_cutter_preview_control_panel {
    width: 100%;
  }

  .video_cutter_preview_buttons_wrapper {
    text-align: center;
  }

  .video_cutter_preview_form_content {
    text-align: center;
  }

}

/* end_preview_page */

/* download_page */

.video_cutter_download_content {
	color: #ecad06;
	font-size: 20px;
  padding: 10px;
  margin-bottom: 20px;
}

.video_cutter_download_content a {
	color: greenyellow;
}

@media (max-width: 1200px) {

  .video_cutter_download_wrapper {
    padding-bottom: 30px;
  }

  .video_cutter_download_main_title {
    text-align: center;
    font-size: 10px;
    margin-bottom: 10px;
  }

  .video_cutter_download_content {
    overflow: hidden; /* Скрываем выходящий текст */
    text-overflow: ellipsis; /* Добавляем многоточие */
  }

  .video_cutter_download_content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .video_cutter_download_content a {
    font-size: 12px;
  }

  .video_cutter_download_butoon {
    font-size: 14px;
    font-weight: bold;
  }

}

/* end_download_page */

/* license_page */
.license_text_wrapper {
  white-space: pre-wrap;
  margin-left: 20px;
  margin-right: 20px;
  text-align: inherit;
}
/* end_license_text */

/* end_video_cutter */

.advertisement {
  max-height: 125px;
}

@media (max-width: 1200px) {

  .advertisement {
    max-height: 350px;
  }

}

/* mobile-down-menu */
.menu-container-mobile-down-menu {
    height: fit-content;
    bottom: 0px;
    text-align: center;
    position: fixed;                 /* Иконка фиксируется на экране */
    display: none;
    width: 95%;
    padding: 10px 0px;                       /* Внутренний отступ вокруг элементов меню */
    border-radius: 20px 20px 0 0;          /* Скругляем углы верхней стороны меню */
    background-color: rgb(143, 219, 219);
    font-size: large;
}

.menu-list-mobile-down-menu {
    padding: 0px;
}


.menu-list-mobile-down-menu li {
    list-style-type: none;               /* Убираем маркеры списков */
    width: 90%;
    margin: auto;
    background-color: aqua;
    border-radius: 20px;
    cursor: pointer;
}

.menu-item-mobile-down-menu > a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 90%;
    margin: auto;
    margin-bottom: 10px;                 /* Отступ между пунктами */
    margin-top: 10px;
    background-color: aqua;
    border-radius: 20px;
    cursor: pointer;
}

.menu-button-mobile-down-menu {
    text-decoration: none;               /* Без подчёркивания ссылок */
    color: rgb(53, 47, 54);                        /* Чёрный цвет шрифта */
    cursor: pointer;                     /* Курсор меняется на руку при наведении */
    font-size: 2em;                      /* Увеличенный размер шрифта */
}

.menu-icon-mobile-down-menu {
    --left-offset-mobile-down-menu: 50%;
    --top-offset-mobile-down-menu: 1vh;
    position: fixed;
    bottom: var(--top-offset-mobile-down-menu);
    left: var(--left-offset-mobile-down-menu);
    z-index: 99;                   /* Наверх всей структуры */
    background-color: #b5f7f1f3;
    padding-top: 7px;
    border-radius: 100px;
    padding-bottom: 7px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: medium;
    border: solid 5px;
    border-color: rgba(72, 201, 201, 0.815);
    opacity: 0.8;
    transform: translate(-50%, 0%);
}

/* Класс, применяемый при смещении вверх */
.menu-icon-mobile-down-menu.moved-up-mobile-down-menu {
    bottom: auto; /* отменяем автоматическое расположение снизу */
    top: calc(100% - var(--height-mobile-down-menu) - var(--height-icon-mobile-down-menu) - 2vh); /* поднимаемся вверх на нужную высоту */

}


.menu-container-mobile-down-menu.open-mobile-down-menu {
    display: block;
}

/* end mobile-down-menu */
