.utms--input-option-text {
  position: relative;
}

.utms--input-option-text:hover .utms--https {
  position: absolute;
  top: 100%;
  display: block;
}

.utms--protocol {
  width: 190px;
  margin-right: 10px;
  margin-top: 25px;
}

.utms--arrow-select {
  display: block;
  position: absolute;
  top: 15px;
  right: 26px;
  width: 7px;
  height: 7px;
}

.utms--arrow-select::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/annex/freetool/images/arrows_input/arrow_black.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.utms--inline-item {
  width: 100%;
  display: flex;
  align-items: end;
}

.utms--inline-item .utms--input {
  width: 100%;
}

.utms--info-block {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.utms--traffick-box {
  border: 1px solid #ced0df;
  max-width: 150px;
  width: 100%;
  height: 130px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  padding-top: 11px;
}

.utms--traffick-box:not(:last-child) {
  margin-right: 14px;
}

.utms--traffick-box .utms--img {
  width: 37px;
  height: 37px;
}

.utms--traffick-box .utms--p {
  margin-top: 11px;
}

.utms--traffick-box-active {
  background: #7c9beb;
}

.utms--traffick-box-active .utms--p {
  color: white;
}

.utms--traffic-row {
  display: flex;
}

.utms--row-block {
  display: flex;
  flex-wrap: wrap;
}

.utms--row-block > .utms--input-block {
  width: 50%;
}

.utms--row-block > .utms--input-block > .utms--input {
  width: 100%;
}

.utms--inline-result {
  display: flex;
}

.utms--inline-result > .utms--input {
  margin-right: 15px;
  width: 70%;
}

.utms--inline-result > .utms--div {
  width: 30%;
  margin-top: unset;
}

.utms--input-block > .utms--p {
  margin-bottom: 9px !important;
}

.utms--description {
  color: #808080 !important;
  font: 400 italic 12px/16px "PT Sans" !important;
  margin-top: 6px;
}
/* =============================================================================== */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.utms--body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.lazyloaded {
  opacity: 1;
  -webkit-animation-name: opacityShow;
  animation-name: opacityShow;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes opacityShow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes opacityShow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.utms--input-data,
.utms--input {
  padding-left: 13px;
  color: #4b4b4b;
  font: 400 normal 12px/16px "PT Sans";
  padding-right: 35px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.utms--input-data-default {
  width: 80%;
  margin-right: 15px;
  padding-right: 13px;
}

.utms--input-data:focus,
.utms--input:focus {
  border: 1px solid #7c9beb;
  background-color: #eef3ff;
}

.utms--p,
.utms--li {
  font: 400 14px/19px "PT Sans";
  color: #575656;
}

.utms--h1 {
  font: 700 normal 30px/40px "PT Sans";
  color: #414141;
}

.utms--h2 {
  font: 400 normal 26px/32px "PT Sans";
  color: #414141;
}

.utms--h3 {
  font: 400 normal 22px/29px "PT Sans";
  color: #414141;
}

.utms--h4 {
  font: 400 normal 18px/25px "Roboto";
  color: #414141;
}

.utms--h5 {
  font: 400 normal 14px/21px "PT Sans";
  color: #414141;
}

.utms--a {
  font: 400 normal 14px/19px "PT Sans";
  text-decoration: none;
  color: black;
}

.utms--input {
  position: relative;
  outline: none;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #e2e2e2;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.utms--breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 400 normal 12px/16px "PT Sans";
  padding-bottom: 30px;
  padding-left: 0;
}

.utms--breadcrumb-list .utms--a {
  font: 400 normal 12px/16px "PT Sans";
}

.utms--li {
  position: relative;
  list-style-type: none;
}

.utms--back .utms--a {
  color: #334d6e;
}

.utms--back {
  padding-right: 5px;
}

.utms--now {
  color: #bdc3cd;
}

.utms--ico {
  padding-left: 30px;
}

.utms--main {
  max-width: 100%;
  position: relative;
  padding-top: 90px;
}

.utms--main-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 25px;
}

.utms--main .utms--img {
  pointer-events: none;
}

.utms--container {
  padding: unset;
}

.utms--content {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
}

.utms--breadcrumb-block {
  margin-top: 35px;
  width: 100%;
}

.utms--btn {
  position: relative;
  background-color: white;
  width: 138px;
  height: 40px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #7a7a7a;
  font: 400 normal 14px/18px "PT Sans";
}

.utms--gray-btn {
  color: #868686;
  background-color: #f2f2f2;
}

.utms--gray-btn .utms--p {
  color: #868686;
}

/* ======================================================================================== */

.utms--change-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}

.utms--change-data:nth-child(1) {
  padding-bottom: 61px;
}

.utms--change-data:nth-child(1) > .utms--change-data-main {
}

.utms--change-data:nth-child(2) {
  padding-top: 27px;
  padding-bottom: 68px;
}

.utms--change-data-table {
  display: flex;
  flex-direction: column;
  justify-content: unset;
}

.utms--sub-change-data {
  display: flex;
  justify-content: space-between;
}

.utms--sub-change-data:not(:first-child) > .utms--change-data-main,
.utms--input-items {
  padding-top: 28px;
  border-top: 1px solid #e0e0e0;
}

.utms--sub-change-data:first-child > .utms--change-data-main {
  padding-bottom: 56px;
}

.utms--sub-change-data:nth-child(2) > .utms--change-data-main {
  padding-bottom: 39px;
}

.utms--sub-change-data > .utms--h5 {
  padding-top: 28px;
}

.utms--change-data > .utms--h4 {
  width: 51%;
}

.utms--sub-change-data > .utms--h4,
.utms--sub-change-data > .utms--h5 {
  width: 51%;
}

.utms--change-data-main {
  width: 100%;
}

.utms--input-block {
  max-width: 100%;
  width: 100%;
}

.utms--input-block .utms--p {
  color: #808080;
  margin-bottom: 13px;
}

.utms--input-block:nth-child(odd) {
  padding-right: 15px;
}

.utms--buttons-item {
  width: 25%;
}

.utms--buttons-item .utms--a:nth-child(even) {
  margin-left: 17px;
}

.utms--copy-btn-link {
  background-color: #7c9beb;
  width: 100%;
  border-radius: 3px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.utms--copy-btn-link .utms--p {
  color: white;
  position: relative;
  padding-left: 37px;
}

.utms--copy-icon {
  position: absolute;
  background-image: url("/static/annex/freetool/images/icons/copy.png");
  width: 13px;
  height: 16px;
  left: 7px;
}

.utms--copy-icon {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  display: block;
  margin-right: 20px;
}

.utms--clear-btn {
  margin-top: 15px;
  width: 100%;
}

.utms--pt-top-12 {
  padding-top: 12px;
}

/* ============================================================================== */

@media screen and (max-width: 1200px) {
  .utms--container {
    padding: 0 50px;
  }
}

@media screen and (max-width: 960px) {
  .utms--container {
    padding: 0 50px;
  }

  .utms--content {
    max-width: unset;
    margin: 0 auto;
  }
}

@media screen and (max-width: 860px) {
  .selector-vue--selector {
    padding-top: 12px;
    margin-right: 0;
  }

  .selector-vue--ui-arrow {
    top: 40%;
  }

  .selector-vue--inline-item {
    flex-direction: column;
    align-items: unset;
  }

  .utms--change-data-main.utms--traffic-row {
    flex-direction: unset;
    flex-wrap: wrap;
  }

  .utms--traffick-box {
    margin-bottom: 10px;
  }

  .utms--change-data-main {
    flex-direction: column;
  }

  .utms--input-block {
    padding: 0 0 10px 0 !important;
    width: 100% !important;
  }

  .utms--inline-result > .utms--input {
    width: 100% !important;
  }

  .utms--buttons-item {
    margin-top: 26px;
    width: 100% !important;
  }
}

@media screen and (max-width: 600px) {
  .utms--breadcrumb-list {
    flex-wrap: wrap;
  }

  .utms--main {
    padding-top: 120px;
  }

  .utms--container {
    padding: 0 20px;
  }

  .utms--change-data {
    flex-direction: column;
    justify-content: unset;
  }

  .utms--sub-change-data {
    flex-direction: column;
    justify-content: unset;
  }

  .utms--sub-change-data > .utms--h5 {
    border-top: 1px solid #e0e0e0;
    width: 100%;
  }

  .utms--sub-change-data:not(:first-child) > .utms--change-data-main,
  .utms--input-items {
    border-top: none;
  }

  .utms--change-data-main.utms--traffic-row {
    flex-direction: column;
    flex-wrap: unset;
  }

  .utms--traffick-box {
    max-width: 100%;
  }
}

