@charset "UTF-8";
/*
url(../images/monley-bw-243.png),
    linear-gradient(to right, white, rgba(255, 255, 255, 0));

 linear-gradient(to right, white, lightgray);

https://www.wondershare.com/

position: -webkit-sticky; 
position: sticky;
top: 0;

      box-shadow: 0px 0px 20px #E1CF9E inset;

color: #390;
color: #805;

$var in scss - does not work with @media

flex-wrap: wrap;
justify-content: flex-end; //horizontal
align-content:space-evenly;
align-items: flex-end; //verstical
flex-direction:column;

*/
/*const*/
/*var, can changed for mobile*/
:root {
  --menu-flex-direction: row;
  --font-size: 1.1rem;
  --font-size-small: 0.7rem;
  --display-computer: block;
  --display-mobile: none;
  --font-size-h1-small: 2rem;
  --header-items-align: space-between;
}

/* mobile */
@media (max-width: 768px) {
  :root {
    --menu-flex-direction: column;
    --font-size: 1.3rem;
    --font-size-small: 0.8rem;
    --display-computer: none;
    --display-mobile: block;
    --font-size-h1-small: 1.3rem;
    --header-items-align: space-around;
  }
}
a {
  color: blue;
  text-decoration: none;
  font-weight: 600;
}
a:visited {
  color: blue;
}
a:hover {
  color: #805;
  text-shadow: 0px 0px 8px lightgray;
  transition: all 0.5s ease;
  cursor: pointer;
}

h1 {
  color: #805;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
}

h2 {
  color: #805;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
}

h3 {
  color: #805;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
}

.hidden {
  display: none;
}

.new {
  color: red;
}

.alternative {
  color: blue;
}

.small {
  font-size: var(--font-size-small);
}

.w40 {
  width: 40%;
}

.w80 {
  width: 80%;
}

.computer {
  display: var(--display-computer);
}

.mobile {
  display: var(--display-mobile);
}

.center_horizontal {
  text-align: center;
}

.vertical_margin {
  margin-top: 8px;
  margin-bottom: 8px;
}

/*  
<a class="download" href="sdfef">
    <img src="./images2/download.svg" width="20px">
    <span>Download for free!</span>
</a>
*/
.download {
  border-radius: 5px;
  margin: 8px;
  border: 1px solid black;
  display: inline-flex;
  align-items: center;
  color: black;
}

.button_buy_m {
  font-weight: 700;
  border-radius: 8px;
  margin: 8px;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 36px;
  min-width: 140px;
  border: 1px solid #71ce57;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: linear-gradient(90deg, rgba(6, 220, 38, 0.6274509804), green);
}
.button_buy_m:visited {
  color: white;
}
.button_buy_m:hover {
  color: #805;
  box-shadow: 0px 0px 8px gray;
  transition: all 0.5s ease;
  cursor: pointer;
}

.button_dd_m, .button_dd_ml_m {
  font-weight: 700;
  border-radius: 8px;
  margin: 8px;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 36px;
  min-width: 140px;
  border: 1px solid rgb(113, 113, 223);
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: white;
  background: linear-gradient(90deg, rgba(0, 0, 255, 0.515), rgba(0, 59, 209, 0.707));
}
.button_dd_m:visited, .button_dd_ml_m:visited {
  color: white;
}
.button_dd_m:hover, .button_dd_ml_m:hover {
  color: #805;
  box-shadow: 0px 0px 8px gray;
  transition: all 0.5s ease;
  cursor: pointer;
}

.button_dd_ml_m {
  padding-top: 8px;
  padding-bottom: 8px;
}

.button_google_play {
  cursor: pointer;
}
.button_google_play:hover {
  box-shadow: 0px 0px 8px gray;
  transition: all 0.5s ease;
  cursor: pointer;
}

.minw226 {
  min-width: 226px;
}

.button_m {
  font-weight: 700;
  background-color: blue;
  color: white;
  text-transform: uppercase;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  height: 40px;
  min-width: 140px;
  border: 1px solid gray;
  transition: background-color 0.225s ease, border-color 0.225s ease, color 0.225s ease;
}
.button_m:hover {
  color: white;
  text-shadow: none;
}

.icon-1:before {
  content: "\e90f";
}

.icon-10:before {
  content: "饇";
}

.title_open_close {
  cursor: pointer;
}

.button_open_close_opened_m {
  color: blue;
  font-size: 1.5em;
  rotate: 180deg;
  transition: 1s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 512 512'><path stroke='currentColor' d='M448 96l-192 320-192-320z'/></svg>");
}
.button_open_close_opened_m:hover {
  color: #805;
  text-shadow: 0px 0px 8px lightgray;
  transition: all 0.5s ease;
  cursor: pointer;
}

.button_open_close_closed_m {
  color: blue;
  font-size: 1.5em;
  rotate: 0deg;
  transition: 1s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /*content: url("./images2/play.svg");*/
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 512 512'><path stroke='currentColor' d='M448 96l-192 320-192-320z'/></svg>");
}
.button_open_close_closed_m:hover {
  color: #805;
  text-shadow: 0px 0px 8px lightgray;
  transition: all 0.5s ease;
  cursor: pointer;
}

.open_close_opened_m {
  transition: 0.3s ease-in-out;
}

.open_close_closed_m {
  transition: 0.3s ease-in-out;
  display: none;
}

body {
  font-family: "Roboto", "MessinaSansWeb", -apple-system, blinkmacsystemfont, "Segoe UI", "Helvetica Neue", arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: var(--font-size);
  font-weight: 400;
  background-image: linear-gradient(to right, white, rgb(255, 241, 215));
}

.body_ny {
  margin: 0px;
  padding: 16px;
  background-image: url("./images2/monley-bw-195-ny.png"), url("./images2/snow_300_300_2.png"), linear-gradient(to right, white, rgb(255, 241, 215));
  background-repeat: no-repeat, repeat, no-repeat;
  background-position: bottom left, top left, right;
  background-size: auto, auto, auto;
  max-width: 1440px;
  margin: auto;
  position: relative;
}

.body {
  margin: 0px;
  padding: 16px;
  background-image: url("./images2/monley-bw-195.png"), linear-gradient(to right, white, rgb(255, 241, 215));
  background-repeat: no-repeat, no-repeat;
  background-position: bottom left, right;
  background-size: auto, auto;
  max-width: 1440px;
  margin: auto;
  position: relative;
}

.logo {
  position: absolute;
  left: 0;
  top: 0;
}
.logo img {
  width: 166px;
}

.logo_users {
  position: absolute;
  left: 0;
  top: 104px;
}

header {
  display: block;
}

content {
  display: block;
}

footer {
  display: block;
}

.header_m, .header_small_m {
  width: 100%;
  text-align: right;
  margin-bottom: 16px;
}
.header_m h1, .header_small_m h1 {
  padding-left: var(--header-h1-padding-left);
}

.header_small_m {
  font-size: var(--font-size-small);
}

.menu_m {
  display: flex;
  margin-left: 20%; /*logo*/
  width: 80%;
  flex-direction: var(--menu-flex-direction);
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
}
.menu_m .item {
  margin-left: 16px;
}

.menu_m_detail a {
  color: #805;
}
.menu_m_detail a:hover {
  color: blue;
}

.content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: space-evenly;
}
.content .item {
  align-self: baseline;
  border-radius: 25px;
  min-width: 300px;
  max-width: 45%;
  border-radius: 25px;
  margin: 4px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid lightgray;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6274509804), white);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease-out;
}
.content .item:hover {
  /*border: 1px solid cv.$cl-a-hover;*/
  transition: all 0.5s ease;
}
.content .item .header {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--header-items-align);
  align-items: center;
  text-align: center;
}
.content .item img {
  float: left;
  padding: 16px;
}
.content .item .text {
  padding-top: 16px;
  line-height: 140%;
}
.content .item .version {
  color: #805;
  text-align: right;
  font-weight: 600;
}
.content .item .links {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-direction: var(--menu-flex-direction);
  align-items: center;
  margin-top: 16px;
}
.content .item .links a:not(.button_dd_m) {
  margin-top: 8px;
  margin-bottom: 8px;
}

.features_m {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: space-evenly;
}
.features_m .item {
  align-self: baseline;
  border-radius: 25px;
  width: 100%;
  border-radius: 25px;
  margin: 4px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid lightgray;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6274509804), white);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease-out;
}
.features_m .item .header {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--header-items-align);
  align-items: center;
  text-align: center;
}
.features_m .item img {
  float: left;
  padding: 16px;
}
.features_m .item h1 {
  clear: left;
}
.features_m .item h2 {
  clear: left;
}
.features_m .item .text {
  padding-top: 16px;
  line-height: 140%;
}
.features_m .item .version {
  color: #805;
  text-align: right;
  font-weight: 600;
}
.features_m .item .links {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-direction: var(--menu-flex-direction);
  align-items: center;
  margin-top: 16px;
}
.features_m .item .links a:not(.button_dd_m) {
  margin-top: 8px;
  margin-bottom: 8px;
}
.features_m .item li {
  padding-bottom: 1rem;
}
.features_m .links {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-direction: var(--menu-flex-direction);
  align-items: center;
  margin-top: 16px;
}
.features_m .links a:not(.button_dd_m) {
  margin-top: 8px;
  margin-bottom: 8px;
}

.left {
  margin-left: 20px;
}

.users_m {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: space-evenly;
  justify-content: flex-end;
}
.users_m .item {
  justify-self: flex-end;
  align-self: baseline;
  min-width: 250px;
  max-width: 100%;
  border-radius: 25px;
  margin: 4px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid lightgray;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6274509804), white);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease-out;
}
.users_m .item .text {
  line-height: 140%;
}
.users_m .item .author {
  padding-top: 16px;
  color: #805;
  text-align: right;
  font-size: var(--font-size-small);
}

.simple_open_close_m {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.simple_block_m, .snapashot_video_simple_block_m, .error_simple_block_m, .about_simple_block_m, .order_next_simple_block_m, .order_simple_block_m, .translation_simple_block_m, .gif_block_m, .faq_block_m, .simple_block_as_column_m {
  display: flex;
  flex-wrap: wrap;
  border-radius: 25px;
  margin: 4px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid lightgray;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6274509804), white);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease-out;
}
.simple_block_m .header, .snapashot_video_simple_block_m .header, .error_simple_block_m .header, .about_simple_block_m .header, .order_next_simple_block_m .header, .order_simple_block_m .header, .translation_simple_block_m .header, .gif_block_m .header, .faq_block_m .header, .simple_block_as_column_m .header {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--header-items-align);
  align-items: center;
  text-align: center;
}
.simple_block_m .text, .snapashot_video_simple_block_m .text, .error_simple_block_m .text, .about_simple_block_m .text, .order_next_simple_block_m .text, .order_simple_block_m .text, .translation_simple_block_m .text, .gif_block_m .text, .faq_block_m .text, .simple_block_as_column_m .text {
  line-height: 140%;
}
.simple_block_m .links, .snapashot_video_simple_block_m .links, .error_simple_block_m .links, .about_simple_block_m .links, .order_next_simple_block_m .links, .order_simple_block_m .links, .translation_simple_block_m .links, .gif_block_m .links, .faq_block_m .links, .simple_block_as_column_m .links {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-direction: var(--menu-flex-direction);
  align-items: center;
  margin-top: 16px;
}
.simple_block_m .links a:not(.button_dd_m), .snapashot_video_simple_block_m .links a:not(.button_dd_m), .error_simple_block_m .links a:not(.button_dd_m), .about_simple_block_m .links a:not(.button_dd_m), .order_next_simple_block_m .links a:not(.button_dd_m), .order_simple_block_m .links a:not(.button_dd_m), .translation_simple_block_m .links a:not(.button_dd_m), .gif_block_m .links a:not(.button_dd_m), .faq_block_m .links a:not(.button_dd_m), .simple_block_as_column_m .links a:not(.button_dd_m) {
  margin-top: 8px;
  margin-bottom: 8px;
}
.simple_block_m li, .snapashot_video_simple_block_m li, .error_simple_block_m li, .about_simple_block_m li, .order_next_simple_block_m li, .order_simple_block_m li, .translation_simple_block_m li, .gif_block_m li, .faq_block_m li, .simple_block_as_column_m li {
  padding-bottom: 1rem;
}

.simple_block_as_column_m {
  flex-wrap: wrap;
  flex-direction: column;
}

.faq_block_m {
  flex-direction: column;
  /*word-break:break-all;*/
}
.faq_block_m a + b {
  color: #805;
}

.gif_block_m {
  justify-content: space-between;
  align-items: center;
}

.translation_m {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: space-evenly;
}
.translation_m .item {
  flex-grow: 1;
  align-self: center;
  border-radius: 25px;
  min-width: 300px;
  max-width: 45%;
  border-radius: 25px;
  margin: 4px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid lightgray;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6274509804), white);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease-out;
}
.translation_m .item img {
  float: left;
  margin: 16px;
  border: 1px solid lightgray;
}
.translation_m .item .author {
  display: inline;
  color: #805;
  text-align: right;
}

.order_next_simple_block_m {
  max-width: 800px;
  margin: auto;
}

.order_m {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.order_m .item {
  flex-grow: 1;
  align-self: center;
  border-radius: 25px;
  min-width: 360px;
  max-width: 500px;
  border-radius: 25px;
  margin: 4px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid lightgray;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6274509804), white);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease-out;
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 4px;
  grid-auto-rows: auto;
  text-align: center;
}
.order_m .item .tl {
  grid-column: 1/2;
  grid-row: 1/4;
}
.order_m .item .tc {
  grid-column: 2/3;
  grid-row: 1/2;
  font-weight: bold;
}
.order_m .item .tr {
  grid-column: 3/4;
  grid-row: 1/2;
}
.order_m .item .cc {
  grid-column: 2/3;
  grid-row: 2/3;
}
.order_m .item .cr {
  grid-column: 3/4;
  grid-row: 2/3;
}
.order_m .item .bc {
  grid-column: 1/4;
  grid-row: 3/4;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: flex-end;
}
.order_m .item .bc2 {
  font-size: var(--font-size-small);
  grid-column: 1/4;
  grid-row: 4/5;
}

.about_simple_block_m {
  justify-content: space-evenly;
  max-width: 1000px;
  margin: auto;
}
.about_simple_block_m img {
  margin: 16px;
}
.about_simple_block_m .right {
  text-align: right;
}

.error_simple_block_m {
  justify-content: space-evenly;
  max-width: 600px;
  margin: auto;
}
.error_simple_block_m img {
  margin: 16px;
}
.error_simple_block_m .right {
  text-align: right;
}

.snapashot_video_simple_block_m {
  justify-content: space-evenly;
}
.snapashot_video_simple_block_m img {
  margin: 16px;
}
.snapashot_video_simple_block_m .item {
  max-width: 250px;
  text-align: center;
}

.carousel_simple_block_m {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1;
  grid-template-rows: 1;
}
.carousel_simple_block_m img {
  margin: 16px;
}
.carousel_simple_block_m .item {
  grid-row: 1/2;
  grid-column: 1/2;
  max-width: 1000px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel_simple_block_m .item__2 {
  grid-row: 1/2;
  grid-column: 1/2;
  max-width: 1000px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.show_from_left {
  --mmrShowType: 1;
  --mmrShowStartPosition: 30%;
  --mmrShowDurationOpacity: 1s;
}

.show_from_right {
  --mmrShowType: 2;
  --mmrShowStartPosition: 30%;
  --mmrShowDurationOpacity: 1s;
}

.show_from_bottom {
  --mmrShowType: 0;
  --mmrShowStartPosition: 50%;
  --mmrShowDuration: 2s;
}

.notification {
  position: fixed;
  padding: 16px;
  z-index: 1000;
  border-radius: 25px;
  border-width: 1px;
  border-color: gray;
  border-style: solid;
  background: white;
  font-size: 1em;
  line-height: 1.7em;
  text-decoration: none;
  text-align: center;
  top: 20%;
  box-shadow: 0 0 30px 3px lightgrey;
}

.footer_m {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 32px;
  text-align: right;
}
.footer_m .item_small {
  font-size: var(--font-size-small);
}

.icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

parental-control {
  display: block;
}

time-tracker-program {
  display: block;
}

screen-capture-app-free {
  display: block;
}

network-monitoring-program-free {
  display: block;
}/*# sourceMappingURL=main.css.map */