/* Fonts */
@font-face {
  font-family: 'Decalotype-Regular';
  src: url('../fonts/Decalotype-Regular.eot');
  src: url('../fonts/Decalotype-Regular.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-Regular.woff') format('woff'),
  url('../fonts/Decalotype-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Decalotype-Light';
  src: url('../fonts/Decalotype-Light.eot');
  src: url('../fonts/Decalotype-Light.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-Light.woff') format('woff'),
  url('../fonts/Decalotype-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Decalotype-Medium';
  src: url('../fonts/Decalotype-Medium.eot');
  src: url('../fonts/Decalotype-Medium.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-Medium.woff') format('woff'),
  url('../fonts/Decalotype-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Decalotype-SemiBold';
  src: url('../fonts/Decalotype-SemiBold.eot');
  src: url('../fonts/Decalotype-SemiBold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-SemiBold.woff') format('woff'),
  url('../fonts/Decalotype-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Decalotype-Bold';
  src: url('../fonts/Decalotype-Bold.eot');
  src: url('../fonts/Decalotype-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-Bold.woff') format('woff'),
  url('../fonts/Decalotype-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Decalotype-ExtraBold';
  src: url('../fonts/Decalotype-ExtraBold.eot');
  src: url('../fonts/Decalotype-ExtraBold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-ExtraBold.woff') format('woff'),
  url('../fonts/Decalotype-ExtraBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Decalotype-Black';
  src: url('../fonts/Decalotype-Black.eot');
  src: url('../fonts/Decalotype-Black.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-Black.woff') format('woff'),
  url('../fonts/Decalotype-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Decalotype-MediumItalic';
  src: url('../fonts/Decalotype-MediumItalic.eot');
  src: url('../fonts/Decalotype-MediumItalic.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Decalotype-MediumItalic.woff') format('woff'),
  url('../fonts/Decalotype-MediumItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Reset CSS */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
html {
  font-size: 10px;
}
body {
  font-family: 'Decalotype-Regular';
  font-weight: 400;
  line-height: normal;
}
html, body {
  height: 100%;
  max-height: 100%;
}
a {
  color: #000000;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:focus {
  outline: none;
}

/* root styles */
#root,
#home,
#main,
#account,
#access,
#download {
  height: 100%;
  max-height: 100%;
  width: 100%;
}

/*------------------*/
/* main page styles */
/*------------------*/
#main .auto-scroll {
  overflow: auto;
}

#main ::-webkit-scrollbar {
  width: .5rem;
}
#main ::-webkit-scrollbar-track {
  background: #ddd; 
}
#main ::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 1rem;
}
#main ::-webkit-scrollbar-thumb:hover {
  background: #999; 
}

/* error styles */
.error404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.error404 h2 {
  font-family: 'Decalotype-SemiBold';
  font-size: 4rem;
  text-align: center;
}

.error404__to-home {
  color: #3a7e89;
  font-size: 3rem;
  margin-top: 1rem;
  text-decoration: underline;
}

/* preview styles */
#main.preview .menu-toggler,
#main.preview .header__buttons,
#main.preview .header__video {
  display: none;
}

/* collaborate styles */
#main.collaborate .menu-toggler,
#main.collaborate .header__buttons,
#main.collaborate .header__video,
#main.collaborate .content__nav-buttons {
  display: none;
}

#main.collaborate .content__comment-form input[type="email"] {
  display: block;
}

/* validation error styles */
.validation__error {
  font-size: 1.3rem;
  text-align: left;
  margin: 1rem 0;
  color: #ec6966;
}

/* processing styles */
.processing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.processing h2 {
  display: none;
  font-family: 'Decalotype-SemiBold';
  font-size: 4rem;
  text-align: center;
}

.processing h2.show {
  display: block;
}

/* wrapper styles */
#main .wrapper {
  background-color: #f7f7f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-left: 0;
  position: relative;
  -webkit-transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  height: 100%;
  max-height: 100%;
}

#main .menu-show {
  padding-left: 30rem;
}

#main .sidebar-show {
  padding-right: 40rem;
}

#main .sidebar-notepad {
  padding-right: 80rem;
}

/* menu styles */
#main .menu {
  background-color: #4bb4bf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);;
  height: 100vh;
  width: 30rem;
  z-index: 999;
}

#main .menu-show .menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

#main .menu__title {
  background-color: #3a7e89;
  padding: 2rem 0;
}

#main .menu__title h2 {
  color: #fff;
  font-family: 'Decalotype-SemiBold';
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

#main .menu__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 2rem 1rem;
}

#main .menu__search-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main .menu__search label {
  display: block;
  height: 2rem;
  width: 2rem;
}

#main .menu__search label svg {
  fill: #fff;
  height: 2rem;
}

#main .menu__search input {
  border: none;
  background-color: transparent;
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 2rem;
  margin-right: 1rem;
  padding: .5rem 1rem;
  width: 100%;
}

#main .menu__search input:focus {
  outline: 0;
}

#main .menu__search-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main .menu__search-buttons button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  position: relative;
  height: 3rem;
}

#main .menu__search-buttons button img {
  text-align: center;
  height: 3rem;
}

#main .menu__list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
}

#main .menu__list li {
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: 'Decalotype-Bold';
  font-size: 2rem;
  position: relative;
  padding: 1rem 6rem 1rem 3rem;
}

#main .menu__list li:nth-child(even) {
  background-color: transparent;
}

#main .menu__list li:nth-child(odd) {
  background-color: #387f8a;
}

#main .menu__list li span {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#main .menu__list-edit {
  right: 3.5rem;
  width: 2rem;
}

#main .menu__list-delete {
  right: 1rem;
  width: 2rem;
}

#main .menu__list-done {
  background-color: #009e00;
  border: .1rem #fff solid;
  border-radius: .5rem;
  display: none;
  font-size: 1.5rem;
  padding: .2rem .5rem;
  right: 1rem;
  text-transform: uppercase;
}

#main .menu__list-done.show {
  display: block;
}

#main .menu__list li:hover .menu__list-edit,
#main .menu__list li:hover .menu__list-delete {
  display: block;
}

#main .menu__list li span img {
  height: 1.8rem;
}

#main .menu__list .active {
  background: url(../img/main/arrow.svg) left center no-repeat;
  background-size: 3rem 3rem;
}
#main .menu__list .empty__canvas{
  background-color: #387f8a;
  color: #fff;
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}

#main .input__visible {
  background-color: transparent;
  border: none;
  color: #fff;
  display: block;
  font-family: 'Decalotype-Bold';
  font-size: 2rem;
  width: 100%;
}

#main .menu__footer {
  background-color: #387f8a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem 1rem;
}

#main .menu__footer h3 {
  color: #fff;
  font-family: 'Decalotype-Bold';
  font-size: 1.8rem;
  text-align: center;
  text-transform: uppercase;
}

#main .menu__footer button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  position: relative;
  height: 3rem;
}

#main .menu__footer button img {
  text-align: center;
  height: 3rem;
}

/* container styles */
#main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  max-height: 100%;
  width: 100%;
}

/* header styles */
#main .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 3rem 4rem 2rem;
  position: relative;
  height: 13rem;
  width: 100%;
}

#main .header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
  height: 8rem;
  width: 50%;
}

#main .header__logo img {
  height: 6rem;
}

#main .header__logo input {
  background-color: transparent;
  border: none;
  color: #555;
  font-family: 'Decalotype-Bold';
  font-size: 2.5rem;
  margin-left: 1rem;
  padding: .5rem 1rem;
  width: 100%;
}

#main .header__logo input::-moz-selection {
  background-color: rgba(75, 180, 191, .5);
}

#main .header__logo input::selection {
  background-color: rgba(75, 180, 191, .5);
}

#main .header__logo input:focus {
  outline: 0;
}

#main .header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main .header__buttons button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 2rem;
  padding: 0;
  position: relative;
  height: 3rem;
}

#main .header__buttons button:last-child {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Decalotype-Bold';
  font-size: 2rem;
  margin-right: 0rem;
  padding: 0 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  height: 5rem;
}

#main .header__buttons button:last-child:hover {
  color: #000;
}

#main .header__buttons button:last-child img {
  margin-right: 1rem;
  height: 2rem;
}

#main .header__buttons button img {
  text-align: center;
  height: 3rem;
}

#main .header__buttons .tooltip {
  background-color: #b4b9c1;
  color: #fff;
  -webkit-clip-path: polygon(0 1rem, 35% 1rem, 50% 0, 65% 1rem, 100% 1rem, 100% 100%, 0 100%);
  clip-path: polygon(0 1rem, 35% 1rem, 50% 0, 65% 1rem, 100% 1rem, 100% 100%, 0 100%);
  font-size: 1.5rem;
  opacity: 0;
  padding: 2rem 1rem 1rem;
  position: absolute;
  bottom: -5rem;
  left: 50%;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  visibility: hidden;
  white-space: nowrap;
}

#main .header__buttons button:focus {
  outline: 0;
}

#main .header__buttons button:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

#main .header__video {
  background-color: #ec6966;
  border-radius: 0 0 1rem 1rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
}

#main .header__video button {
  background-color: transparent;
  border: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Decalotype-Bold';
  font-size: 2rem;
  margin: 0 auto;
  padding: 1rem 1rem .5rem;
  text-decoration: none;
  text-transform: uppercase;
}

#main .header__video button img {
  margin-right: 1rem;
  height: 2rem;
}

/* heights of some blocks */
#main .content__element.element-40 {
  height: 40%;
}

#main .content__element.element-50 {
  height: 50%;
}

#main .content__element.element-60 {
  height: 60%;
}

#main .group-long {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

#main .group-short {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

#main .group-vshort {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}

#main .group-third {
  -ms-flex-preferred-size: calc(100% / 3);
  flex-basis: calc(100% / 3);
}

#main .group-half {
  -ms-flex-preferred-size: calc((100% - 14rem) / 2);
  flex-basis: calc((100% - 14rem) / 2);
}

/* content styles */
#main .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2rem 2rem;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  height: 100%;
  max-height: calc(100% - 6rem - 13rem - 2rem);
}

#main .col {
  width: calc(20% - 2rem);
}

#main .content__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  height: 100%;
}

#main .content__element {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  height: 100%;
}

#main .content__element:not(:last-child) {
  margin-bottom: 2rem;
}

#main .content-first,
#main .content-second {
  display: none;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

#main .content-first.show,
#main .content-second.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#main .content__group-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  min-height: 11rem;
}

#main .content__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  min-height: 100%;
}

#main .content__group textarea {
  border: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-family: 'Decalotype-Light';
  font-size: 1.4rem;
  margin: 0 2rem 0rem;
  overflow: auto;
  padding: 0;
  resize: none;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  height: 100%;
  min-height: 5rem;
  width: calc(100% - 4rem);
}

#main .content__textarea {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 2rem;
  position: relative;
  height: 5rem;
}
#main .content__textarea label {
  background: url(../img/main/lines.png), #fff;
  cursor: text;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: calc(100% - 4rem);
}

#main .content__textarea.before label {
  display: none;
}

#main .content__textarea.cut {
  margin-bottom: 4rem;
}

#main .content__textarea input {
  font-family: 'Decalotype-Light';
  font-size: 1.4rem;
  border: none;
  border-bottom: 1px solid #999;
  margin: 0 2rem .5rem;
  width: 65%;
}

#main .content__textarea .symbols-left {
  position: absolute;
  top: .5rem;
  left: .5rem;
}

#main .content__input-small .symbols-left,
#main .content__input-line .symbols-left,
#main .content__line .symbols-left {
  position: absolute;
  top: .5rem;
  left: -1.5rem;
}

#main .symbols-left {
  color: #ec6966;
  font-size: 1.2rem;
  width: 1.5rem;
}

#main .content__textarea input:focus,
#main .content__group textarea:focus {
  outline: 0;
}

#main .content__logo-big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 0 auto;
  position: relative;
  width: 14rem;
}

#main .content__logo-big img {
  width: 100%;
}

#main .content__logo-big input {
  background-color: #387f8a;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 11rem;
}

#main .content__logo-big input:focus {
  outline: none;
}

#main .content__logo-big.cut {
  margin-bottom: 6rem;
}

#main .content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 2rem 2rem 0;
  text-transform: uppercase;
}

#main .content__title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Decalotype-Bold';
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

#main .content__title h2 img {
  margin-right: .5rem;
  height: 2rem;
}

#main .content__title-btn {
  border: none;
  background-color: #4bb4bf;
  border-radius: 5rem;
  cursor: pointer;
  outline: none;
  padding: 0;
  position: relative;
  height: 2rem;
  width: 3.5rem;
}

#main .content__title-btn span {
  background-color: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: .3rem;
  right: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1.3rem;
  width: 1.3rem;
}

#main .content__title-btn.off {
  background-color: #3a7e89;
}

#main .content__title-btn.off span {
  left: auto;
  right: .3rem;
}

#main .content__subtitle {
  margin: 0 2rem 0;
  text-transform: uppercase;
}

#main .content__subtitle h3 {
  color: #606060;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

#main .col:nth-child(4) .group-vshort .content__subtitle h3 {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Decalotype-Bold';
  font-size: 1.2rem;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 0;
  height: 2rem;
}

#main .content-second h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Decalotype-Bold';
  font-size: 1.2rem;
  font-weight: bold;
  height: 2rem;
}

#main .content__nav {
  background-color: #4bb4bf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  visibility: hidden;
  width: 100%;
}

#main .content__nav.show {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  height: 4rem;
}

#main .content__nav-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0rem 1rem;
}

#main .content__nav-comment a,
#main .content__nav-comment button {
  display: block;
  height: 2rem;
}

#main .content__nav-comment a svg,
#main .content__nav-comment button svg {
  fill: #fff;
  height: 2rem;
}

#main .content__nav-comment button {
  background-color: transparent;
  border: none;
}

#main .content__nav-comment button:focus {
  outline: 0;
}

#main .content__nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main .content__nav-buttons button {
  background-color: transparent;
  border: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1rem;
  text-decoration: none;
}

#main .content__nav-buttons button:hover {
  text-decoration: underline;
}

#main .content__nav-buttons button:first-child {
  color: #387f8a;
  font-size: 1.5rem;
  text-transform: uppercase;
}

#main .content__nav-buttons button:last-child {
  background-color: #387f8a;
  font-family: 'Decalotype-Bold';
  font-size: 2rem;
  text-transform: uppercase;
  height: 100%;
}

#main .spinner {
  max-width: 7rem;
}

#main .spinner,
#main .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#main .content__comment {
  background-color: #fff;
  display: none;
  position: absolute;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  min-width: 30rem;
  width: 100%;
  z-index: 999;
}

#main .content__comment.show {
  display: block;
}

#main .content__comment-items {
  overflow: auto;
  padding-right: .5rem;
  max-height: 50vh;
}

#main .content__comment.top {
  background-color: rgba(0, 0, 0, .1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
  padding: 1rem 2.5rem 2.5rem 1rem;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#main .content__comment.top::before {
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
  position: absolute;
  top: .1rem;
  bottom: .1rem;
  left: .1rem;
  right: .1rem;
  z-index: -1;
}

#main .content__comment.left {
  background-color: rgba(0, 0, 0, .1);
  -webkit-clip-path: polygon(0 0, 94% 0, 94% 40%, 100% 50%, 94% 60%, 94% 100%, 0 100%);
  clip-path: polygon(0 0, 94% 0, 94% 40%, 100% 50%, 94% 60%, 94% 100%, 0 100%);
  padding: 1rem 4rem 1rem 1rem;
  left: -100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#main .content__comment.left::before {
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 94% 0, 94% 40%, 100% 50%, 94% 60%, 94% 100%, 0 100%);
  clip-path: polygon(0 0, 94% 0, 94% 40%, 100% 50%, 94% 60%, 94% 100%, 0 100%);
  position: absolute;
  top: .1rem;
  bottom: .1rem;
  left: .1rem;
  right: .1rem;
  z-index: -1;
}

#main .content__comment.right {
  background-color: rgba(0, 0, 0, .1);
  -webkit-clip-path: polygon(4% 0, 100% 0, 100% 100%, 4% 100%, 4% 60%, 0 50%, 4% 40%);
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 4% 100%, 4% 60%, 0 50%, 4% 40%);
  padding: 1rem 2.5rem 1rem 2.5rem;
  right: -100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#main .content__comment.right::before {
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(4% 0, 100% 0, 100% 100%, 4% 100%, 4% 60%, 0 50%, 4% 40%);
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 4% 100%, 4% 60%, 0 50%, 4% 40%);
  position: absolute;
  top: .1rem;
  bottom: .1rem;
  left: .1rem;
  right: .1rem;
  z-index: -1;
}

#main .content__comment.bottom {
  background-color: rgba(0, 0, 0, .1);
  -webkit-clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
  clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
  padding: 3rem 2.5rem 1rem 1rem;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#main .content__comment.bottom::before {
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
  clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
  position: absolute;
  top: .1rem;
  bottom: .1rem;
  left: .1rem;
  right: .1rem;
  z-index: -1;
}

#main .col:first-child .content__comment.position-mobile {
  -webkit-clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
  clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
  padding: 5rem 4rem 2rem 2rem;
  top: 100%;
  bottom: auto;
}

#main .col:not(:first-child) .content__comment.position-mobile {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
  padding: 1rem 1rem 3rem;
  top: auto;
  bottom: 100%;
}

#main .content__comment.position-mobile {
  background-color: rgba(0, 0, 0, .1);
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#main .col:first-child .content__comment.position-mobile::before {
  -webkit-clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
  clip-path: polygon(0 6%, 40% 6%, 50% 0, 60% 6%, 100% 6%, 100% 100%, 0 100%);
}

#main .col:not(:first-child) .content__comment.position-mobile::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
}

#main .content__comment.position-mobile::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: .1rem;
  bottom: .1rem;
  left: .1rem;
  right: .1rem;
  z-index: -1;
}

#main .content__comment-item {
  background-color: #fff;
  border-bottom: 1px solid #f7f7f9;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

#main .content__comment-item p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

#main .content__comment-item span {
  color: #b4b9c1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.2rem;
}

#main .content__comment-item span a {
  display: block;
  margin-left: 1rem;
  height: 1.2rem;
}

#main .content__comment-item span a img {
  height: 1.2rem;
}

#main .content__comment-form {
  background-color: #fff;
  text-align: center;
}

#main .content__comment-form input[type="email"] {
  border: 1px solid #ccc;
  display: none;
  margin: 0 0 1rem;
  padding: .5rem;
  width: 100%;
}

#main .content__comment-form input[type="email"]::-webkit-input-placeholder {
  color: #b4b9c1;
}

#main .content__comment-form input[type="email"]::-moz-placeholder {
  color: #b4b9c1;
}

#main .content__comment-form input[type="email"]:-ms-input-placeholder {
  color: #b4b9c1;
}

#main .content__comment-form input[type="email"]::-ms-input-placeholder {
  color: #b4b9c1;
}

#main .content__comment-form input[type="email"]::placeholder {
  color: #b4b9c1;
}

#main .content__comment-form textarea {
  border: 1px solid #ccc;
  margin: 0 0 1rem;
  padding: .5rem;
  height: 10rem;
  width: 100%;
}

#main .content__comment-form textarea::-webkit-input-placeholder {
  color: #b4b9c1;
  text-transform: uppercase;
}

#main .content__comment-form textarea::-moz-placeholder {
  color: #b4b9c1;
  text-transform: uppercase;
}

#main .content__comment-form textarea:-ms-input-placeholder {
  color: #b4b9c1;
  text-transform: uppercase;
}

#main .content__comment-form textarea::-ms-input-placeholder {
  color: #b4b9c1;
  text-transform: uppercase;
}

#main .content__comment-form textarea::placeholder {
  color: #b4b9c1;
  text-transform: uppercase;
}

#main .content__comment-form input[type="submit"] {
  background-color: #4bb4bf;
  border: none;
  border-radius: .5rem;
  color: #fff;
  font-family: 'Decalotype-Bold';
  font-size: 2rem;
  padding: .5rem 1rem;
  text-transform: uppercase;
}

#main .content__comment-close {
  position: absolute;
  top: 0rem;
  right: 0rem;
  height: 3rem;
  width: 3rem;
}

#main .content__comment.bottom .content__comment-close {
  top: 2rem;
}

#main .content__comment.left .content__comment-close {
  right: 1.5rem;
}

#main .content__comment-close button {
  background-color: transparent;
  border: 0;
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

#main .content__subgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 2rem 2rem;
}

#main .content__subgroup h3 {
  color: #606060;
  font-size: 1.4rem;
  line-height: 2rem;
  text-transform: uppercase;
}

#main .content__subgroup textarea {
  font-size: 1.5rem;
  margin: 0;
  width: 100%;
}

#main .content__subgroup-wrapper.cut {
  margin-bottom: 6rem;
}

#main .content__input-small {
  position: relative;
  width: 100%;
}

#main .content__input-small input {
  font-family: 'Decalotype-Light';
  font-size: 1.4rem;
  border: none;
  border-bottom: 1px solid #999;
  width: 90%;
}

#main .content__input-small input:focus {
  outline: none;
}

#main .content__subgroup h5 {
  color: #606060;
  font-family: 'Decalotype-MediumItalic';
  font-size: 1rem;
  line-height: 2rem;
  text-align: left;
}

#main .content__subgroup-left {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

#main .content__subgroup:nth-of-type(2) .content__subgroup-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#main .content__subgroup-right {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 7rem;
}

#main .content__subgroup-right input[type='file'] {
  display: none;
}

#main .content__subgroup-file {
  background: transparent;
  cursor: pointer;
  height: 7rem;
  width: 7rem;
}

#main .content__subgroup-file img {
  height: 7rem;
  width: 7rem;
}

#main .content__subgroup-colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 1rem;
  margin-bottom: 4rem;
}

#main .content__subgroup-colors .colors-none {
  display: none;
}

#main .content__subgroup-colors button,
#main .content__subgroup-colors input {
  border: none;
  display: block;
  margin-bottom: .5rem;
  padding: 0;
  height: 3rem;
  width: 3rem;
}

#main .content__subgroup-colors button,
#main .content__subgroup-colors input:not(:last-child) {
  margin-right: 1rem;
}

#main .content__subgroup-left input.color-input {
  background: transparent;
  border: 1px solid #333;
  height: 3rem;
  width: 3rem;
}

#main .content__subgroup-left input.color-input.chosen {
  background: inherit;
  border: none;
  color: transparent;
}

#main .content__calcs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-bottom: 6rem;
}

#main .content__calcs.cut {
  margin-bottom: 6rem;
}

#main .content__calc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 2rem;
}

#main .content__calc:last-child {
  margin: 0 2rem 2rem;
}

#main .content__calc h4 {
  color: #000;
  font-family: 'Decalotype-Bold';
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}

#main .content-first .content__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: .5rem;
  position: relative;
}

#main .content-first .content__line input {
  font-family: 'Decalotype-Light';
  font-size: 1.4rem;
  padding: 0;
}

#main .content-first .content__line input:focus {
  outline: 0;
}

#main .content-first .content__line-in1 {
  border: 0;
  border-bottom: 1px solid #999;
  margin-right: 1rem;
  width: 100%;
}

#main .content-first .content__line-in2 {
  border: 1px solid #999;
  width: 5rem;
}

#main .content-first input[type="text"]:disabled {
  background-color: #fff;
}

#main  .content__line h5 {
  color: #606060;
  font-family: 'Decalotype-MediumItalic';
  font-size: 1.3rem;
  margin-right: 1rem;
  text-transform: uppercase;
  width: 100%;
}

#main .content-first .content__line-total {
  font-family: 'Decalotype-Bold';
}

#main .content-second .content__line {
  position: relative;
}

/* footer styles */
#main .footer {
  background-color: #44a8ad;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 6rem;
}

#main .footer button {
  background-color: transparent;
  border: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Decalotype-Bold';
  font-size: 2rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-decoration: none;
  text-transform: uppercase;
  height: 100%;
}

#main .footer button img {
  margin-right: 1rem;
  height: 2rem;
}

/* sidebar styles */
#main .sidebar {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all .3s cubic-bezier(0.86, 0, 0.07, 1);
  height: 100vh;
  width: auto;
}

#main .sidebar-show .sidebar,
#main .sidebar-notepad .sidebar {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

#main .sidebar .history,
#main .sidebar .share,
#main .sidebar .account,
#main .sidebar .create,
#main .sidebar .notepad {
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

#main .sidebar .history__title,
#main .sidebar .share__title,
#main .sidebar .account__title,
#main .sidebar .create__title,
#main .sidebar .notepad__title {
  background-color: #4bb4bf;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  padding: 2rem 0;
  position: relative;
}

#main .sidebar .history__title h2,
#main .sidebar .share__title h2,
#main .sidebar .account__title h2,
#main .sidebar .create__title h2,
#main .sidebar .notepad__title h2 {
  color: #fff;
  font-family: 'Decalotype-SemiBold';
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

#main .sidebar__close {
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 5rem;
  width: 5rem;
}

#main .sidebar__close button {
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0;
  height: 100%;
  width: 100%;
}

#main .sidebar__close button:focus {
  outline: none;
}

/* history styles */
#main .history {
  display: none;
  width: 40rem;
}

#main .history.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .history__current {
  background-color: #387f8a;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 1rem;
}

#main .history__current span {
  font-weight: bold;
  font-size: 1.8rem;
}

#main .history__current-empty {
  background-color: #387f8a;
  color: #fff;
  cursor: pointer;
  display: block;
  font-weight: normal;
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}

#main .history__list {
  background-color: #fff;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
}

#main .history__list>div>div>div {
  color: #606060;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 1.6rem;
  padding: 2.5rem 2rem;
}

#main .history__list>div>div>div.active {
  background-color: rgba(56, 127, 138, .3) !important;
}

#main .history__list>div>div>div:hover {
  background-color: rgba(56, 127, 138, .1);
}

#main .history__list h3 {
  color: #000;
  font-family: 'Decalotype-Bold';
  font-size: 1.6rem;
}

/* share styles */
#main .share {
  display: none;
  width: 40rem;
}

#main .share.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .share__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
  padding: 2rem;
}

#main .share__block {
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  padding: 2rem;
  text-align: center;
}

#main .share__block:not(:last-child) {
  margin-bottom: 1.5rem;
}

#main .share__image {
  height: 4rem;
}

#main .share__image img {
  height: 100%;
}

#main .share__info {
  margin: 1rem 0 2rem;
}

#main .share__info h2 {
  font-family: 'Decalotype-Bold';
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

#main .share__info p {
  color: #606060;
  font-size: 1.4rem;
}

#main .share__link {
  margin-bottom: 2rem;
}

#main .share__link input[type="text"] {
  border: none;
  color: #b4b9c1;
  font-size: 1.5rem;
  padding: 0;
}

#main .share__link input[type="email"] {
  color: #333;
  font-size: 1.5rem;
  padding: .5rem 1rem;
}

#main .share__link input[type="text"]:focus {
  outline: none;
}

#main .share__copy {
  background-color: #4bb4bf;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: 'Decalotype-Bold';
  font-size: 1.6rem;
  overflow: hidden;
  padding: .5rem 3rem;
  position: relative;
  text-transform: uppercase;
}

#main .share__copy.sent::before,
#main .share__copy.nsent::before,
#main .share__copy.copied::before,
#main .share__copy.ncopied::before {
  opacity: 1;
  z-index: 3;
}

#main .share__copy.sent::before {
  content: "sent!";
}

#main .share__copy.nsent::before {
  content: "not sent!";
}

#main .share__copy.copied::before {
  content: "copied!";
}

#main .share__copy.ncopied::before {
  content: "not copied!";
}

#main .share__copy::before {
  content: "";
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-transform: uppercase;
  -webkit-transition: all .5s .5s linear;
  -o-transition: all .5s .5s linear;
  transition: all .5s .5s linear;
  z-index: -9;
}

#main .share__copy.sent::after,
#main .share__copy.copied::after {
  content: "";
  background-color: #009e00;
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: skew(-45deg) scaleX(1.3) translateX(0%);
  -ms-transform: skew(-45deg) scaleX(1.3) translateX(0%);
  transform: skew(-45deg) scaleX(1.3) translateX(0%);
  z-index: 2;
}

#main .share__copy.nsent::after,
#main .share__copy.ncopied::after {
  content: "";
  background-color: #ec6966;
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: skew(-45deg) scaleX(1.3) translateX(0%);
  -ms-transform: skew(-45deg) scaleX(1.3) translateX(0%);
  transform: skew(-45deg) scaleX(1.3) translateX(0%);
  z-index: 2;
}

#main .share__copy::after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
  -webkit-transform: skew(-45deg) scaleX(1.3) translateX(-100%);
  -ms-transform: skew(-45deg) scaleX(1.3) translateX(-100%);
  transform: skew(-45deg) scaleX(1.3) translateX(-100%);
  z-index: -9;
}

/* account styles */
#main .account {
  display: none;
  width: 40rem;
}

#main .account.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .account__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
}

#main .account__group {
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
}

#main .account__group label {
  color: #b4b9c1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.2rem;
  padding: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

#main .account__group input {
  border: none;
  background-color: transparent;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-family: 'Decalotype-Bold';
  font-size: 1.8rem;
  padding: 1rem;
  text-align: right;
}

#main .account__group input[type="password"] {
  max-width: 60%;
}

#main .account__group input:focus {
  text-align: left;
  outline: none;
}

#main .account__form input[type="submit"] {
  background-color: #4bb4bf;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: 'Decalotype-Bold';
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding: .5rem 2rem;
  text-transform: uppercase;
}

#main .account__form a {
  background-color: #ec6966;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding: .3rem 1rem;
  text-transform: uppercase;
}

/* create styles */
#main .create {
  display: none;
  width: 40rem;
}

#main .create.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .create__title h4 {
  color: #fff;
  font-size: 1.8rem;
  font-style: italic;
  margin: 0 auto;
  text-align: center;
  width: 70%;
}

#main .create__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
}

#main .create__content h3 {
  font-family: 'Decalotype-Bold';
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#main .create__content p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

#main .create__content form input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

#main .create__content form input[type="text"] {
  font-size: 2rem;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
  width: 100%;
}

#main .create__content form input[type="submit"] {
  background-color: #4bb4bf;
  border: none;
  border-radius: 1rem;
  color: #fff;
  cursor: pointer;
  font-family: 'Decalotype-Bold';
  font-size: 1.8rem;
  margin: 0 auto;
  padding: .5rem 2rem;
  text-transform: uppercase;
}

/* notepad styles */
#main .notepad {
  display: none;
  width: 80rem;
}

#main .notepad.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* menu toggler styles */
#main .menu-toggler {
  position: absolute;
  top: 5.5rem;
  right: -3rem;
  z-index: 999;
}

#main .menu-toggler button {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 0 .5rem #777;
  box-shadow: 0 0 .5rem #777;
  cursor: pointer;
  margin: 0;
  padding: 0;
  height: 3rem;
  width: 3rem;
}

#main .menu-toggler button:focus {
  outline: 0;
}

#main .menu-toggler button svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  height: 100%;
  width: 100%;
}

#main .menu-show .menu-toggler button svg {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* when notepad open */
/* wrapper styles */
#main .wrapper.column {
  height: auto;
}

/* header styles */
#main .wrapper.column .header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

#main .wrapper.column .header__logo {
  width: 100%;
}

#main .wrapper.column .header__buttons {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#main .wrapper.column .header__video {
  width: 100%;
}

/* content styles */
#main .wrapper.column .content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  max-height: none;
}

#main .wrapper.column .col {
  width: 100%;
}

#main .wrapper.column .content__element {
  margin-bottom: 2rem;
}

#main .wrapper.column .content__logo-big {
  margin: 2rem auto 2rem 2rem;
}

#main .wrapper.column .content__subgroup h5 {
  font-size: 1.3rem;
  text-align: left;
}

#main .wrapper.column .content__line input {
  font-size: 1.8rem;
}

/* video popup styles */
#main .video-popup {
  background-color: #eee;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1000;
}

#main .video-popup.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .video-popup__title {
  padding: 2rem 0 4rem;
}

#main .video-popup__title h2 {
  color: #000;
  font-family: 'Decalotype-SemiBold';
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

#main .video-popup__frame {
  height: 60%;
  width: 60%;
}

#main .video-popup__frame iframe {
  height: 100%;
  width: 100%;
}

#main .video-popup__close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  height: 5rem;
  width: 5rem;
}

#main .video-popup__close button {
  background-color: transparent;
  border: none;
  color: #ec6966;
  cursor: pointer;
  font-size: 4.5rem;
  padding: 0;
  height: 100%;
  width: 100%;
}

/* Large desktops and laptops */
@media (min-width: 1600px) and (max-width: 1919px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  html {
    font-size: 8px;
  }
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 7px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 7px;
  }

  /* wrapper styles */
  #main .menu-show {
    padding-left: 40%;
  }

  #main .sidebar-show,
  #main .sidebar-notepad {
    padding-right: 60%;
  }

  /* menu styles */
  #main .menu {
    width: 40%;
  }

  #main .menu-show .menu-toggler {
    top: 1.5rem;
    right: 2rem;
  }

  /* sidebar styles */
  #main .sidebar {
    width: 60%;
    z-index: 888;
  }

  #main .sidebar .history,
  #main .sidebar .share,
  #main .sidebar .account,
  #main .sidebar .notepad {
    width: 100%;
  }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 7px;
  }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  html {
    font-size: 7px;
  }
  
  /* wrapper styles */
  #main .wrapper {
    height: auto;
    max-height: none;
  }

  #main .menu-show {
    padding-left: 0rem;
  }

  #main .sidebar-show,
  #main .sidebar-notepad {
    padding-right: 0rem;
  }

  /* menu styles */
  #main .menu {
    width: 100%;
  }

  /* header styles */
  #main .header__video {
    width: 100%;
  }

  /* content styles */
  #main .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #main .col {
    width: 100%;
  }

  #main .content__element {
    margin-bottom: 2rem;
  }

  #main .content__logo-big {
    margin: 2rem;
  }

  #main .content__subgroup h5 {
    font-size: 1.3rem;
    text-align: left;
  }

  #main .content__line input {
    font-size: 1.8rem;
  }

  #main .content__comment-close {
    top: 4rem;
    height: 4rem;
    width: 4rem;
  }

  #main .content__comment-close button {
    font-size: 3.5rem;
  }

  /* sidebar styles */
  #main .sidebar {
    width: 100%;
    z-index: 999;
  }

  #main .sidebar .history,
  #main .sidebar .share,
  #main .sidebar .account,
  #main .sidebar .notepad {
    width: 100%;
  }

  /* video popup styles */
  #main .video-popup__title h2 br {
    display: none;
  }
  #main .video-popup__frame {
    height: 30%;
    width: 100%;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  /* video popup styles */
  #main .video-popup__frame {
    height: 60%;
    width: 80%;
  }
}

@media (max-width: 660px) {
  html {
    font-size: 7px;
  }
}

/* Landscape phones and smaller */
@media (max-width: 576px) {
  html {
    font-size: 7px;
  }

  /* header styles */
  #main .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }

  #main .header__logo {
    width: 100%;
  }

  #main .header__buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 7px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 6px;
  }  
}

/*------------------*/
/* home page styles */
/*------------------*/
#home .container {
  margin: 0 auto;
  height: 100%;
  max-width: 130rem;
}

/* home styles */
#home .home {
  background: url(../img/home/bg.jpeg) top 0 center no-repeat;
  background-size: 100% 100%;
  text-align: center;
  min-height: 100vh;
}

#home .home__logo {
  /* background-color: #fff; */
  /* text-align: center; */
  /* height: 12rem; */
  /* padding: 2rem; */
  padding-top: 5rem;
}

#home .home__logo img {
  height: 100%;
}

#home .home__title {
  padding: 5rem 0 4rem;
}

#home .home__title h1 {
  color: #ffffff;
  font-family: 'Decalotype-SemiBold';
  font-size: 5.4rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

#home .home__title h1 br {
  display: none;
}

#home .home__intro {
  background: url(../img/home/canvas.jpeg) top 10% center no-repeat,
  url(../img/home/intro-bg.svg) center no-repeat;
  background-size: 66rem 38rem, 100% 100%;
  margin: 0 auto;
  text-align: center;
  height: 50rem;
  width: 100rem;
}

#home .home__link {
  background-color: #eb6966;
  display: inline-block;
  margin-top: -5rem;
  margin-bottom: 10rem;
  text-align: center;
}

#home .home__link a {
  color: #ffffff;
  display: inline-block;
  font-family: 'Decalotype-ExtraBold';
  font-size: 3rem;
  padding: 2rem 23rem;
  text-decoration: none;
  text-transform: uppercase;
}

/* Large desktops and laptops */
@media (min-width: 1600px) and (max-width: 1919px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  html {
    font-size: 8px;
  }
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 7px;
  }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 7px;
  }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  html {
    font-size: 7px;
  }

  #home .container {
    padding: 2rem;
    max-width: 100%;
  }

  /* home styles */
  #home .home__title h1 br {
    display: block;
  }

  #home .home__intro {
    background-size: 66rem 38rem, 100% 100%;
    height: 50rem;
    width: 100%;
  }

  #home .home__link a {
    padding: 2rem 15rem;
  }
}

@media (max-width: 660px) {
  html {
    font-size: 7px;
  }
}

/* Landscape phones and smaller */
@media (max-width: 576px) {
  html {
    font-size: 7px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 7px;
  }

  /* home styles */
  #home .home__intro {
    background-size: 53rem 30rem, 100% 100%;
    height: 40rem;
    width: 100%;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 6px;
  }
}

/*---------------------*/
/* account page styles */
/*---------------------*/
/* wrapper styles */
.wrapper {
  height: 100%;
}

/* container styles */
#account .container {
  margin: 0 auto;
  height: 100%;
  max-width: 130rem;
}

#account .intro .container,
#account .attend .container {
  max-width: 112rem;
}

/* intro styles */
#account .intro {
  background: url(../img/account/intro-bg.jpg) top center no-repeat;
  background-size: 100% 100%;
}

#account .intro__logo {
  margin: 0 auto;
  height: 15rem;
  max-width: 80%;
}

#account .intro__logo img {
  margin-top: 3rem;
  height: 10rem;
}

#account .intro .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5rem 0 25rem;
}

#account .intro__title h1 {
  color: #3a7e89;
  font-family: 'Decalotype-Black';
  font-size: 6rem;
  text-transform: uppercase;
}

#account .intro__form {
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2.5rem;
  width: 45rem;
}

#account .intro__group {
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

#account .intro__group:last-child {
  margin-bottom: 0;
  text-align: center;
}

#account .intro__group.short {
  width: 49%;
}

#account .intro__group input {
  border: 2px solid #999;
  font-size: 2rem;
  padding: 0 1rem;
  height: 5rem;
  width: 100%;
}

#account .intro__group input:focus {
  outline: none;
}

#account .intro__group label {
  background-color: #fff;
  font-family: 'Decalotype-Light';
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: -.8rem;
  text-transform: uppercase;
  white-space: nowrap;
}

#account .intro__group input[type="submit"] {
  background-color: #ec6966;
  border: none;
  border-radius: .5rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

#account .intro__group a {
  color: #2d9bd4;
  font-family: 'Decalotype-Light';
  font-size: 1.7rem;
  text-transform: uppercase;
}

/* attend styles */
#account .attend {
  background-color: #3a7e89;
}

#account .attend__title {
  background-color: #fff;
  padding: 7rem 0;
}

#account .attend__title h2 {
  font-family: 'Decalotype-Bold';
  font-size: 6.3rem;
  letter-spacing: -0.192rem;
  text-align: center;
}

#account .attend__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14rem 0 6rem;
}

#account .attend__block {
  background-color: #fff;
  padding: 4rem 3rem 10rem;
  width: 32%;
}

#account .attend__image {
  text-align: center;
  height: 13rem;
}

#account .attend__image img {
  height: 100%;
}

#account .attend__info {
  padding-top: 2.5rem;
}

#account .attend__info h3 {
  font-family: 'Decalotype-Bold';
  font-size: 3.9rem;
  line-height: 4rem;
  letter-spacing: -0.04rem;
  margin-bottom: 4rem;
  text-align: center;
  text-transform: uppercase;
}

#account .attend__info ul {
  list-style-type: square;
  padding-left: 2rem;
}

#account .attend__info li {
  font-size: 2.8rem;
  letter-spacing: -0.018rem;
}

#account .attend__btn {
  margin-bottom: 2rem;
  text-align: center;
}

#account .attend__btn button {
  background-color: #ec6966;
  border: none;
  -webkit-box-shadow: 0 0 1.7rem rgba(113, 113, 113, 0.16);
  box-shadow: 0 0 1.7rem rgba(113, 113, 113, 0.16);
  color: #ffffff;
  display: inline-block;
  font-family: 'Decalotype-Bold';
  font-size: 2.5rem;
  letter-spacing: -0.076rem;
  padding: 2rem 8rem;
  text-transform: uppercase;
}

/* wrapper styles */
#account .wrapper {
  background-color: #369dd7;
}

/* footer styles */
#account .footer {
  background-color: #3a7e89;
  padding: 6rem 0;
}

#account .footer__bg {
  background-color: #fff;
  padding: 4rem 0 5rem;
}

#account .footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

#account .footer__data {
  margin-right: 30rem;
}

#account .footer__logo {
  margin-bottom: 3.5rem;
  max-width: 30rem;
}

#account .footer__logo img {
  width: 100%;
}

#account .footer__address {
  margin-bottom: 4rem;
}

#account .footer__address h3 {
  font-size: 2.5rem;
}

#account .footer__address h3:first-child {
  margin-bottom: 4rem;
}

#account .footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#account .footer__soc a {
  display: block;
  max-width: 8rem;
}

#account .footer__soc a img {
  width: 100%;
}

#account .footer__slogan {
  position: relative;
}

#account .footer__slogan h2 {
  font-family: 'Decalotype-ExtraBold';
  font-size: 7rem;
  line-height: 8rem;
}

#account .footer__bg-image {
  position: absolute;
  top: -14rem;
  right: -15rem;
  max-width: 30rem;
}

#account .footer__bg-image img {
  width: 100%;
}

/* Large desktops and laptops */
@media (min-width: 1600px) and (max-width: 1919px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  html {
    font-size: 8px;
  }

  #account .intro .container {
    max-width: 119rem;
  }

  #account .intro__title h1 {
    font-size: 7.5rem;
  }

  #account .intro__form {
    width: 50rem;
  }
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 7px;
  }

  #account .intro .container {
    max-width: 113rem;
  }

  #account .intro__title h1 {
    font-size: 7.5rem;
  }

  #account .intro__form {
    width: 50rem;
  }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 7px;
  }

  /* container styles */
  #account .container {
    padding: 0 3rem;
    max-width: 100%;
  }

  #account .intro .container {
    max-width: 75%;
  }

  #account .intro__title h1 {
    font-size: 6rem;
  }

  #account .intro__form {
    padding: 1.5rem;
    width: 50rem;
  }
  
  /* footer styles */
  #account .footer .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #account .footer__data {
    margin-right: 0rem;
  }

  #account .footer__slogan {
    margin-right: 15rem;
  }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  html {
    font-size: 7px;
  }

  /* container styles */
  #account .container {
    padding: 0 1.5rem;
    max-width: 100%;
  }

  #account .intro .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 75%;
  }

  #account .intro__title h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  #account .intro__form {
    padding: 1.5rem;
    width: 100%;
  }

  /* attend styles */
  #account .attend__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #account .attend__block {
    margin-bottom: 2rem;
    width: 100%;
  }

  /* footer styles */
  #account .footer .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #account .footer__data {
    margin-right: 0rem;
  }

  #account .footer__bg-image {
    position: absolute;
    top: 0rem;
    right: 0rem;
    max-width: 15rem;
  }
}

@media (max-width: 660px) {
  html {
    font-size: 7px;
  }
}

/* Landscape phones and smaller */
@media (max-width: 576px) {
  html {
    font-size: 7px;
  }

  /* footer styles */
  #account .footer__address h3:first-child {
    margin-bottom: 2rem;
  }

  #account .footer__slogan h2 {
    font-size: 5rem;
    line-height: 6rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 7px;
  }

  /* footer styles */
  #account .footer__bg-image {
    position: absolute;
    top: 0rem;
    right: 0rem;
    max-width: 15rem;
  }

  #account .footer__logo {
    margin-bottom: 1rem;
    max-width: 25rem;
  }

  #account .footer__address h3 {
    font-size: 2rem;
  }

  #account .footer__soc a {
    max-width: 7rem;
  }

  #account .footer__slogan h2 {
    font-size: 4rem;
    line-height: 5rem;
  }

  #account .footer__bg-image {
    position: absolute;
    top: 0rem;
    right: 0rem;
    max-width: 10rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 6px;
  }

  /* footer styles */
  #account .footer__data {
    margin-right: 0;
  }

  #account .footer__logo {
    margin-bottom: 1rem;
    max-width: 25rem;
  }

  #account .footer__slogan h2 {
    font-size: 4rem;
    line-height: 5rem;
  }
}

/*----------------------*/
/* download page styles */
/*----------------------*/
/* buttons styles */
#download .btn {
  background-color: #f16763;
  border: none;
  border-radius: 1rem;
  color: #fff;
  cursor: pointer;
  font-family: 'Decalotype-Bold';  
  font-size: 3.3rem;
  text-transform: uppercase;
  padding: 2rem 1rem;
  width: 30%;
}

/* wrapper style */
#download .wrapper {
  height: 100%;
}

/* container styles */
#download .container {
  margin: 0 auto;
  height: 100%;
  max-width: 130rem;
}

/* header styles */
#download .header {
  background: url(../img/download/bg-image.png) top right no-repeat, #369dd7;
  background-size: 100% 101%;
}

/* intro styles */
#download .intro {
  padding: 16rem 0 0;
}

#download .intro__title {
  color: #ffffff;
  text-align: center;
}

#download .intro__title h1 {
  font-family: 'Decalotype-ExtraBold';
  font-size: 7.3rem;
  letter-spacing: -0.06rem;
  margin-bottom: 3rem;
}

#download .intro__title h2 {
  font-family: 'Decalotype-Light';
  font-size: 3.1rem;
  letter-spacing: -0.03rem;
  margin-bottom: 6rem;
}

#download .intro__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 9rem;
}

#download .intro__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 65%;
}

#download .intro__form input[type=text],
#download .intro__form input[type=email] {
  border: 2px solid #333;
  border-radius: 1rem;
  font-size: 2.3rem;
  padding: 2rem 2.5rem;
  width: 46.5%;
}

/* promo styles */
#download .promo__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#download .promo__block {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.11);
  box-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.11);
  -webkit-transform: scaleY(1.15);
  -ms-transform: scaleY(1.15);
  transform: scaleY(1.15);
  width: 30%;
}

#download .promo__block>* {
  -webkit-transform: scaleY(.85);
  -ms-transform: scaleY(.85);
  transform: scaleY(.85);
}

#download .promo__image {
  margin: 3rem 0;
  text-align: center;
  height: 9rem;
}

#download .promo__image img {
  height: 100%;
}

#download .promo__title {
  margin-bottom: 2rem;
  text-align: center;
}

#download .promo__title h2 {
  font-family: 'Decalotype-Bold';
  font-size: 3rem;
  letter-spacing: -0.039rem;
  text-transform: uppercase;
}

#download .promo__list {
  list-style: square;
  margin-bottom: 4rem;
}

#download .promo__list li {
  font-family: 'Decalotype-Light';
  font-size: 2rem;
  margin: 0 2rem .5rem 4rem;
}

#download .promo__list-none {
  list-style: none;
  margin-left: 2rem !important;
}

/* ancillary styles */
#download .ancillary {
  background-color: #369dd7;
  color: #fff;
  padding-top: 9rem;  
}

#download .ancillary .container {
  max-width: 90rem;
}

#download .ancillary__title {
  font-size: 4rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

#download .ancillary__title h2 {
  font-family: 'Decalotype-Bold';
  font-size: 4rem;
  text-transform: uppercase;
}

#download .ancillary__items {
  padding-bottom: 2.5rem;
}

#download .ancillary__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}

#download .ancillary__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 3.5rem;
  height: 5rem;
  width: 4.5rem;
}

#download .ancillary__image img {
  height: 100%;
  width: 100%;
}

#download .ancillary__info p {
  font-family: 'Decalotype-Light';
  font-size: 2.1rem;
}

#download .ancillary__button {
  text-align: center;
}

#download .ancillary__button a {
  display: inline-block;
  margin-bottom: 2.5rem;
  text-align: center;
  width: 50%;
}

/* about styles */
#download .about {
  padding: 2.5rem 0 6rem;
}

#download .about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 110rem;
}

#download .about__author {
  -webkit-box-shadow: 0 0.3rem 2.1rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.3rem 2.1rem rgba(0, 0, 0, 0.16);
  width: 30%;
}

#download .about__author-img {
  padding: 2rem 2rem 0;
  width: 100%;
}

#download .about__author-img img {
  vertical-align:bottom;
  width: 100%;
}

#download .about__author-data {
  background-color: #f16763;
  color: #fff;
  font-family: 'Decalotype-Light';
  padding: 2rem;
}

#download .about__author-data h3 {
  font-weight: bold;
  font-size: 2rem;
}

#download .about__author-data h4 {
  font-size: 1.8rem;
}

#download .about__info {
  position: relative;
  width: 65%;
}

#download .about__info::before {
  content: "";
  background-color: #f16763;
  -webkit-box-shadow: 0 1.3rem 8.8rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 1.3rem 8.8rem rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  height: 100%;
  width: 100%;
  z-index: -1;
}

#download .about__info-container {
  background-color: #fff;
  -webkit-box-shadow: 0 0.3rem 2.1rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.3rem 2.1rem rgba(0, 0, 0, 0.16);
  padding: 3rem 3rem 5rem;
}

#download .about__info h2 {
  font-family: 'Decalotype-Bold';
  font-size: 4rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

#download .about__info p {
  font-size: 2.1rem;
  letter-spacing: -0.021rem;
}

#download .about__info p:not(:last-child) {
  margin-bottom: 3rem;
}

/* strategy styles */
#download .strategy {
  background-color: #369dd7;
  color: #fff;
  padding: 5.5rem 0 7.5rem;
  text-align: center;
}

#download .strategy h2 {
  font-family: 'Decalotype-ExtraBold';
  font-size: 7.3rem;
  letter-spacing: -0.06rem;
  margin-bottom: 5rem;
}

#download .strategy p {
  font-size: 3.1rem;
  letter-spacing: -0.03rem;
  margin-bottom: 5rem;
}

#download .strategy__button {
  text-align: center;
}

#download .strategy__button a {
  display: inline-block;
  margin-bottom: 2.5rem;
  text-align: center;
  width: 40%;
}

/* footer styles */
#download .footer__bg {
  background-color: #fff;
  padding: 4rem 0 5rem;
}

#download .footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

#download .footer__data {
  margin-right: 30rem;
}

#download .footer__logo {
  margin-bottom: 3.5rem;
  max-width: 30rem;
}

#download .footer__logo img {
  width: 100%;
}

#download .footer__address {
  margin-bottom: 4rem;
}

#download .footer__address h3 {
  font-size: 2.5rem;
}

#download .footer__address h3:first-child {
  margin-bottom: 4rem;
}

#download .footer__slogan {
  position: relative;
}

#download .footer__slogan h2 {
  font-family: 'Decalotype-ExtraBold';
  font-size: 7rem;
  line-height: 8rem;
}

#download .footer__bg-image {
  position: absolute;
  top: -14rem;
  right: -15rem;
  max-width: 30rem;
}

#download .footer__bg-image img {
  width: 100%;
}

/* bottom-footer styles */
#download .bottom-footer {
  background-color: #369dd7;
}

#download .bottom-footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#download .bottom-footer--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem 0;
}

#download .bottom-footer a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.5rem;
  margin: 0 2rem;
  text-decoration: none;
}

#download .bottom-footer a img {
  margin-bottom: 1rem;
  height: 7rem;
  width: 7rem;
}

#download .bottom-footer a:hover {
  color: #141621;
}

#download .bottom-footer h2 {
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem 0;
  width: 25rem;
}

/* Large desktops and laptops */
@media (min-width: 1600px) and (max-width: 1919px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  html {
    font-size: 8px;
  }
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 7px;
  }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 7px;
  }

  /* container styles */
  #download .container {
    padding: 0 3rem;
  }

  #download .btn {
    font-size: 2.5rem;
  }

  /* promo styles */
  #download .promo__list li {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  /* ancillary styles */
  #download .ancillary__info p {
    font-size: 3rem;
  }

  /* about styles */
  #download .about__author-data h3 {
    font-size: 3rem;
  }

  #download .about__author-data h4 {
    font-size: 2.5rem;
  }

  #download .about__info p {
    font-size: 3rem;
  }

  /* footer styles */
  #download .footer .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #download .footer__data {
    margin-right: 0rem;
  }

  #download .footer__slogan {
    margin-right: 15rem;
  }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  html {
    font-size: 7px;
  }

  /* container styles */
  #download .container {
    padding: 0 3rem;
  }

  /* intro styles */
  #download .intro__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #download .intro__form-group {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 3rem;
    width: 100%;
  }

  #download .intro__form .btn {
    width: 50%;
  }

  /* promo styles */
  #download .promo__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 3rem 0;
  }

  #download .promo__block {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    width: 100%;
  }

  #download .promo__block:not(:last-child) {
    margin-bottom: 3rem;
  }

  #download .promo__block>* {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }

  #download .promo__list li {
    font-size: 3rem;
    margin: 0 3rem 1rem 6rem;
  }

  /* ancillary styles */
  #download .ancillary__button a {
    width: 75%;
  }

  #download .ancillary__info p {
    font-size: 3rem;
  }

  /* about styles */
  #download .about__author-data h3 {
    font-size: 3rem;
  }

  #download .about__author-data h4 {
    font-size: 2.5rem;
  }

  #download .about__info p {
    font-size: 3rem;
  }

  /* strategy styles */
  #download .strategy__button a {
    width: 60%;
  }

  /* footer styles */
  #download .footer .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #download .footer__data {
    margin-right: 0rem;
  }

  #download .footer__bg-image {
    position: absolute;
    top: 0rem;
    right: 0rem;
    max-width: 15rem;
  }
}

@media (max-width: 660px) {
  html {
    font-size: 7px;
  }

  /* intro styles */
  #download .intro__form .btn {
    width: 60%;
  }
}

/* Landscape phones and smaller */
@media (max-width: 576px) {
  html {
    font-size: 7px;
  }

  /* header styles */
  #download .header {
    background: #369dd7;
  }

  /* intro styles */
  #download .intro__form .btn {
    width: 70%;
  }

  /* about styles */
  #download .about .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #download .about__author {
    margin-bottom: 3rem;
    width: 50%;
  }

  #download .about__info {
    width: 90%;
  }

  /* footer styles */
  #download .footer__address h3:first-child {
    margin-bottom: 2rem;
  }

  #download .footer__slogan h2 {
    font-size: 5rem;
    line-height: 6rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 7px;
  }
  
  /* intro styles */
  #download .intro__form .btn {
    width: 80%;
  }

  /* footer styles */
  #download .footer__bg-image {
    position: absolute;
    top: 0rem;
    right: 0rem;
    max-width: 15rem;
  }

  #download .footer__logo {
    margin-bottom: 1rem;
    max-width: 25rem;
  }

  #download .footer__address h3 {
    font-size: 2rem;
  }

  #download .footer__soc a {
    max-width: 7rem;
  }

  #download .footer__slogan h2 {
    font-size: 4rem;
    line-height: 5rem;
  }

  #download .footer__bg-image {
    position: absolute;
    top: 0rem;
    right: 0rem;
    max-width: 10rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 6px;
  }

  /* intro styles */
  #download .intro__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #download .intro__form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 3rem;
    width: 100%;
  }

  #download .intro__form-group input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #download .intro__form input[type=text],
  #download .intro__form input[type=email] {
    margin: 0 auto;
    width: 90%;
  }

  #download .intro__form input[type=text] {
    margin-bottom: 3rem;
  }

  #download .intro__form .btn {
    width: 90%;
  }

  /* strategy styles */
  #download .strategy__button a {
    width: 70%;
  }

  /* footer styles */
  #download .footer__data {
    margin-right: 0;
  }

  #download .footer__logo {
    margin-bottom: 1rem;
    max-width: 25rem;
  }

  #download .footer__slogan h2 {
    font-size: 4rem;
    line-height: 5rem;
  }
}

/*------------------------------*/
/* login and reset pages styles */
/*------------------------------*/
/* wrapper styles */
#access .wrapper {
  height: 100vh;
}

#access .container {
  margin: 0 auto;
  height: 100%;
  max-width: 50rem;
}

/* access styles */
#access .access {
  background-color: #ededed;
  height: 100%;
}

#access .access .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#access .access__logo {
  height: 9rem;
}

#access .access__logo img {
  height: 100%;
}

#access .access__form {
  margin-top: 5rem;
  width: 100%;
}

#access .access__group {
  text-align: center;
}

#access .access__group:not(:last-child) {
  margin-bottom: 2rem;
}

#access .access__group-wrapper {
  position: relative;
}

#access .access__group input {
  background-color: #fff;
  border: none;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 0 3rem;
  height: 5rem;
  width: 100%;
}

#access .access__group input::-webkit-input-placeholder {
  color: #aaaaaa;
  text-transform: uppercase;
}

#access .access__group input::-moz-placeholder {
  color: #aaaaaa;
  text-transform: uppercase;
}

#access .access__group input:-ms-input-placeholder {
  color: #aaaaaa;
  text-transform: uppercase;
}

#access .access__group input::-ms-input-placeholder {
  color: #aaaaaa;
  text-transform: uppercase;
}

#access .access__group input::placeholder {
  color: #aaaaaa;
  text-transform: uppercase;
}

#access .access__group label {
  background: url(../img/access/eye.svg) center no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  position: absolute;
  right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 2rem;
  width: 4rem;
  z-index: 9;
}

#access .access__group a {
  color: #3a7e89;
  display: inline-block;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

#access .access__group a:hover {
  color: #ec6966;
}

#access .access__group input[type="submit"] {
  background-color: #ec6966;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Decalotype-Bold';
  font-size: 2.5rem;
  text-transform: uppercase;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

#access .access__group input[type="submit"]:hover {
  background-color: #3d7d88;
}

/* Large desktops and laptops */
@media (min-width: 1600px) and (max-width: 1919px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  html {
    font-size: 8px;
  }
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 7px;
  }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 7px;
  }

  /* container styles */
  #access .container {
    padding: 0 2rem;
  }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  html {
    font-size: 7px;
  }

  /* container styles */
  #access .container {
    padding: 0 2rem;
    max-width: 90%;
  }
}

@media (max-width: 660px) {
  html {
    font-size: 7px;
  }
}

/* Landscape phones and smaller */
@media (max-width: 576px) {
  html {
    font-size: 7px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 7px;
  }  
}

@media (max-width: 375px) {
  html {
    font-size: 6px;
  }  
}

/* custom CSS styles */
/* Alert box */
.custom__alert {  
  background-color: #f44336;
  color: white;
  font-size: 1.3rem;
  margin: 3rem 0 1.5rem;
  opacity: 1;
  padding: 2rem;
  transition: opacity 0.6s;  
}

.custom__alert.success {
  background-color: #4caf50;
}
.custom__alert.info {
  background-color: #2196f3;
}
.custom__alert.warning {
  background-color: #ff9800;
}

.custom__alert__closebtn {
  color: white;
  cursor: pointer;
  font-weight: bold;
  float: right;
  font-size: 2.2rem;
  line-height: 2rem;
  margin-left: 1.5rem;
  transition: 0.3s;
}

.custom__alert__closebtn:hover {
  color: black;
}

/* Validation message */
.validation__error {
  color: #ec6966;
  font-size: 1.4rem;  
  margin: 1.5rem 0 1.5rem 0;  
  text-align: left;
}

/* Notification */
.notification__message {
  font-size: 1.4rem;
}

/* Notepad */
.rdw-editor-wrapper {
  padding: 3rem !important;
}

/* Complete overlay while data is loading */
.overlay {  
  background-color: #4caf50 !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  z-index: 1000 !important;
}

/* Sign up button  */
.signup__btn {
  cursor: pointer;
}

/* Chrome picker - color picker */
.chrome-picker {
  width: 19rem !important;
}

/* Send canvas copy */
.share__via__email {  
  font-size: 1.1rem !important;
  text-align: center !important;
}

/* Hide cancel & save buttons */
.hide_cs_btn {
  display: none !important;
}

/* Infinite scroller */
#historyListLoader > div > div {
  overflow: scroll;
  height: auto;
}

/* Spinner animation */
.spinner {  
  display: flex;
  text-align: center;
  width: 7rem;
}

.spinner_hidden {
  display: none !important;
}

.spinner > div {
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;  
  height: 1.8rem;
  width: 1.8rem;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Checkmark animation */
.checkmark__hidden {
  display: none !important;
}

.checkmark__circle {
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
}

.checkmark-svg {
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  border-radius: 50%;
  box-shadow: inset 0px 0px 0px #7ac142;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;    
  height: 2.6rem;
  width: 2.6rem;
}

.checkmark__check {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  transform-origin: 50% 50%;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}

/* Disbaled inputs */
input[type="text"]:disabled {
  background-color: #fff;
}

textarea:disabled {
  background-color: #fff;
}

.danger__hidden {
  display: none !important;
}

.danger__circle {
  animation: dangerStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;  
}

.danger {
  animation: dangerFill 0.4s ease-in-out 0.4s forwards,
    dangerScale 0.3s ease-in-out 0.9s both;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #ec6966;
  height: 2.6rem;
  width: 2.6rem;
}

.danger__check {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  transform-origin: 50% 50%;
  stroke-dasharray: 29;
  stroke-dashoffset: 29;  
}

@keyframes dangerStroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dangerScale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes dangerFill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #ec6966;
  }
}

/* Side menu name update */
.input__hidden {
  display: none;
}

.input__visible {
  display: block;
  outline: none;
}

.text__hidden {
  display: none;
}

.text__visible {
  display: block;
}

/* canvas loading */
.loading__canvas {
  background-color: #387f8a;
  color: #fff;
  font-size: 1.7rem;
  padding: 1rem;
  text-align: center;
}

/* Signup email */
.signup__email__required {
  color: #3a7e89;
  font-size: 1.4rem;
  margin-top: .5rem;
}
