.test-section {
  position: relative;

}

.test-section__start {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin: 163px 0 20px 0;
}

.test-section__start.hide {
  display: none;
}

.test-section__title {
  font-family: "Intel One", "Menlo", sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 12px;
}

.test-section__subtitle {
  font-family: "Intel One", "Menlo", sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #262626;
  margin-bottom: 46px;
  text-align: center;
}

.test-section__cameras {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 119px;
}

.test-section__cameras .test-section__camera:nth-child(1) .test-section__camera-img {
  max-width: 166px;
}

.test-section__cameras .test-section__camera:nth-child(2) .test-section__camera-img {
  max-width: 196px;
}

.test-section__cameras .test-section__camera:nth-child(3) .test-section__camera-img {
  max-width: 170px;
}

.test-section__cameras .test-section__camera:nth-child(4) .test-section__camera-img {
  max-width: 194px;
}

.test-section__cameras .test-section__camera:nth-child(5) .test-section__camera-img {
  max-width: 199px;
}

.test-section__cameras .test-section__camera:nth-child(6) .test-section__camera-img {
  max-width: 70px;
}

.test-section__camera {
  display: flex;
  align-items: end;
  border-radius: 4px;
}

.test-section__camera-img {
  height: auto;
}

.test-section__container {
  position: relative;
  max-width: 1560px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 3;
}

.test-section__block {
  display: none;
  color: black;
  margin: 151px auto 20px auto;
}

.test-section__block.show {
  display: block;
}

.test-section__answer {
  margin-top: 35px;
}

.test-section__progress-bar {
  position: relative;
  max-width: 663px;
  width: calc(100% - 40px);
  height: 15px;
  border-radius: 100px;
  background: rgb(233, 233, 233);
  overflow: hidden;
  margin: 0 auto;
}

@media all and (max-width: 768px) {
  .test-section__progress-bar {
    width: calc(100%);
    height: 10px;
  }
}

.test-section__progress-bar.hide {
  display: none;
}

.test-section__bar-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100px;
  background: rgb(0, 84, 174);
  transition: all 200ms ease-in-out;
}

.test-section__bar-line.hide {
  display: none;
}

.test-section__count {
  text-align: center;
  font-size: 16px;
  margin-bottom: 32px;
}

.test-section__question {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-size: 40px;
  line-height: 38px;
  font-weight: 400;
  text-align: center;
  margin: 66px 0 72px 0;
}

.test-section__question.hide {
  display: none;
}

.test-section__find-btn {
  font-weight: 500;
  font-size: 18px !important;
  font-family: "Intel One Text", "Menlo", sans-serif;
  line-height: 26px !important;
  color: #ffffff;
  padding: 10px 20px 10px 20px;
  border-radius: 5px;
  background: rgb(0, 84, 174);
  outline: none;
  cursor: pointer;
  border: none !important;
}

.test-section__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 36px 48px;
  margin: 0;
}

.test-section__list {
  position: relative;
  list-style: none;
  border: 1px solid rgb(0, 84, 174);
  border-radius: 5px;
  cursor: pointer;
  width: max-content;
  text-align: center;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.test-section__lists.hide {
  display: none;
}

.test-section__click-area {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px 12px 20px;
  margin: 0;
  color: rgb(0, 84, 174);
  transition: all 150ms ease-in-out;
}

.test-section__click-area.active {
  color: #ffffff;
  background: rgb(0, 84, 174);
}

.test-section__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 152px auto 0 auto;
  max-width: 880px;
}

@media all and (max-width: 768px) {
  .test-section__navigation.show {
    flex-direction: column-reverse;
    row-gap: 16px;
  }
}


.test-section__navigation.show {
  margin-top: 0;
}


.test-section__btn {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-weight: 500;
  font-size: 18px !important;
  line-height: 26px;
  padding: 10px 20px 10px 20px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  height: 45px;
}

.test-section__btn.answer-back {
  color: rgb(0, 84, 174);
  background: #ffffff;
  border: 1px solid rgb(0, 84, 174);
}

@media all and (max-width: 768px) {
  .test-section__btn.answer-back {
    margin: 0 auto 0 0;
  }
}

.test-section__btn.answer-next {
  color: #ffffff;
  background: #ACACAC;
  border: none;
}

.test-section__btn.answer-next.hide {
  display: none;
}

.test-section__btn.answer-next.lock {
  pointer-events: none;
}

.test-section__btn.answer-next.active {
  background: rgb(0, 84, 174);
}

.test-section__img {
  margin: 0 auto;
}

.test-section__result-block .test-section .white-line {
  margin: 64px 0;
}


.test-section__result {
  max-width: 881px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.test-section__article-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: white;
  text-align: center;
}

.test-section__article-link {
  display: flex;
  margin: 64px auto 0 auto;
  background: white;
  color: blue;
}

.test-section__share-block {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}

.test-section__share-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #fff;
}

.test-section__links {
  display: flex;
  column-gap: 15px;
}

.test-section__link {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 32px;
}

.test-section__label {
  font-weight: 800;
  font-size: 12px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
}

.test-section__result-title {
  font-family: "Intel One", "Menlo", sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 102px;
}


.test-section__result-container {
  display: flex;
  flex-direction: column;
}

.test-section__result-best {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 71px;
}

.test-section__result-recommendations-label {
  width: fit-content;
  border-radius: 4px;
  background: linear-gradient(135.00deg, rgb(0, 84, 174) 0%, rgb(0, 153, 236) 100%);
  padding: 5px 32px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
}

.test-section__recommendation-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.test-section__result-preview {
  margin-bottom: 15px;
}

/* Best Card */

.test-section__best-card {
  position: relative;
  max-width: 344px;
  width: 100%;
  padding: 27px 20px 28px 20px;
  border-radius: 4px;
  border: 1px solid rgb(0, 84, 174);
  box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
}

.test-section__best-card-label {
  font-family: "Intel One", sans-serif;
  position: absolute;
  top: -30px;
  left: -32px;
  width: fit-content;
  border-radius: 4px;
  background: linear-gradient(135.00deg, rgb(0, 84, 174) 0%, rgb(0, 153, 236) 100%);
  padding: 5px 32px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
}

.test-section__best-card:before {
  content: '';
  position: absolute;
  top: 15px;
  left: -30px;
  width: 55px;
  height: 35px;
  background: url("../images/cameras/best-corner.png") no-repeat;
  z-index: -1;
}

.test-section__best-name {
  font-family: "Intel One", "Menlo", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  color: rgb(38, 38, 38);
  margin: 0;
}

.test-section__best-price {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
  color: rgb(38, 38, 38);
  margin: 4px 0 15px 0
}

.test-section__best-link {
  font-family: "Intel One Text", "Menlo", sans-serif;
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: rgb(0, 84, 174);
  margin: 0 0 38px 0;
  text-decoration: none;
}

.test-section__select-btn {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  background: #0054ae;
  border-radius: 5px;
  padding: 12px 43px 14px 43px;
  border: 1px solid #0054ae;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  margin: 0 auto;
  align-items: center;
}

.test-section__select-btn:hover {
  color: #fff;
}

/* Best Card - End */

/* Recommendation Card */

.test-section__recommendation-card {
  max-width: 267px;
  width: 100%;
  border-radius: 4px;
  padding: 21px 34px;
  border: 1px solid rgb(0, 84, 174);
  box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
}


.test-section__recommendation-name {
  font-size: 30px;
  font-weight: 400;
  line-height: 39px;
  color: rgb(38, 38, 38);
}

.test-section__recommendation-price {
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: rgb(38, 38, 38);
  margin-top: 4px;
}

.test-section__recommendation-link {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: rgb(0, 84, 174);
  margin: 15px 0 40px 0;
  text-decoration: none;
}

/* Recommendation Card - End */

.test-section__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}

.test-section__send-btn,
.test-section__all-btn {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-weight: 500 !important;
  font-size: 18px !important;
  text-align: center;
  color: rgb(0, 84, 174);
  border: 1px solid #0054ae;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
  text-decoration: none;
  height: 45px;
}

button.test-section__send-btn {
  border: none !important;
}

#questionForm select {
  font-family: "Intel One Text", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  width: 100%;
}

.results-form__agree-checkbox {
  display: block;
  position: relative;
  padding: 0;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
}

/* Hide the browser's default checkbox */
.results-form__agree-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.results-form__agree-checkbox .checkmark {
  position: absolute;
  box-shadow: inset 0 3px 2px 0 rgba(0, 84, 174, 0.15);
  border: 1px solid #0054ae;
  background: #fff;
  width: 24px;
  height: 24px;
}

/* When the checkbox is checked, add a blue background */
input:checked~.checkmark {
  background-color: #0068b5;
  border: 1px solid #0068b5 !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.results-form__agree-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Style the checkmark/indicator */
input:checked~.checkmark:after {
  display: block;
  background: url("../images/svg/check.svg") no-repeat;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: none;
}

.test-section__all-btn {
  padding: 10px 49px 10px 49px;
}

.test-section__send-btn {
  background: #0054ae;
  color: #ffffff;
  padding: 10px 39px 10px 39px;
}

.results-form__title {
  font-family: "Intel One", sans-serif;
  font-weight: 500;
  font-size: 46px;
  color: #000;
  margin: 20px 0 4px 0;
}

.results-form__subtitle {
  font-family: "Intel One Text", sans-serif;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  color: #000;
  margin: 0;
}

@media all and (max-width: 768px) {

  .test-section__send-btn,
  .test-section__all-btn {
    max-width: 256px;
    padding: 10px 0;
    margin: 0 auto;
    height: 41px;
  }

  .test-section__all-btn {
    margin: 0 auto 80px auto;
  }
}

.test-section__all-btn.hide {
  display: none;
}

.test-section__send-btn.hide {
  display: none;
}

/* Popup results */

.results-form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.results-form__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  column-gap: 9px;
  margin: 0;
}

.results-form .error-message {
  font-family: "Intel One Text", sans-serif;
  grid-column: 2;
  /* Align error message under the inputs */
  color: red;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
}

.results-form__item span {
  position: relative;
  font-family: "Intel One", "Menlo", sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.results-form__item span:after {
  content: '*';
  position: absolute;
  width: 7px;
  height: 100%;
  top: 0;
  color: red;
}

.results-form__item .input-text {
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 9px 17px;
  outline: none;
}

.results-form__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 29px;
}

.results-form__btn-close {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #0054ae;
  background: #ffffff;
  border: 1px solid #0054ae;
  border-radius: 5px;
  padding: 10px 20px;
  outline: none;
  cursor: pointer;
}

.results-form__btn {
  font-family: "Intel One Text", "Menlo", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  background: #0054ae;
  border: none !important;
  border-radius: 5px;
  padding: 10px 20px;
  outline: none;
  cursor: pointer;
}

.results-form__agree-checkbox .checkbox-label {
  padding-top: 0;
}

#questionForm .dropdown-wrapper {
  position: relative;

}

#questionForm input {
  font-family: "Intel One Text", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  width: -webkit-fill-available;
  height: 40px;
  border: 1px solid #ced4da;
  border-radius: 5px 8px 8px 5px;
  padding: 9px 17px;
  outline: none;
}

#questionForm .arrow {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

#questionForm .dropdown-content {
  display: none;
  position: absolute;
  border: 1px solid #ced4da;
  border-radius: 6px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
  top: 40px;
  background-color: #ffffff;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
  z-index: 1;
}

#questionForm .dropdown-content .dropdown-country-list {
  font-family: "Intel One Text", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

#questionForm .dropdown-content .dropdown-country-list:first-child {
  margin-top: 12px;
}

#questionForm .dropdown-content .dropdown-country-list:hover {
  background: rgba(0, 163, 246, 0.15);
}


@media (min-width: 769px) {
  #questionForm select {
    font-size: 14px;
  }


  .results-form {
    row-gap: 27px;
  }

  .results-form__item {
    display: grid;
    grid-template-columns: 134px 1fr;
    column-gap: 26px;
  }

  .results-form__item span {
    font-size: 20px;
  }

  .results-form__btns {
    margin-top: 45px;
  }

  .results-form__btn {
    font-size: 20px;
  }

  .results-form__btn-close {
    font-size: 20px;
  }

  .results-form__agree-checkbox .checkbox-label {
    font-family: "Intel One Text", sans-serif;
    font-weight: 400;
    padding-left: 37px;
    font-size: 20px;
    color: #000;
  }
}

@media all and (max-width: 768px) {
  .results-form__title {
    font-size: 36px;
    line-height: 1em;
    margin-bottom: 8px;
  }

  .results-form__subtitle {
    font-size: 20px;
  }

  .test-section__start {
    margin: 44px 0 20px 0;
  }

  .results-form__agree-checkbox .checkbox-label {
    padding-top: 5px;
  }

  .test-section__block {
    margin: 47px auto 20px auto;
  }

  .test-section__question {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    line-height: normal;
    color: #000;
    margin: 28px auto 38px auto;
  }

  .test-section__click-area {
    font-weight: 500;
    font-size: 15px;
    color: #0054ae;
  }

  .test-section__btn {
    font-weight: 500;
    font-size: 14px !important;
    height: 41px;
  }


  .test-section__title {
    font-weight: 500;
    font-size: 20px;
    margin: 0;
  }

  .test-section__subtitle {
    font-weight: 300;
    font-size: 18px;
    line-height: normal;
    text-align: center;
    color: #000;
    margin: 6px auto 28px auto;
  }

  .test-section__cameras {
    display: grid;
    align-items: center;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 37px;
  }

  .test-section__camera-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .test-section__camera {
    display: flex;
    align-items: center;
    max-width: 121px;
    height: 58px;
  }

  .test-section__cameras .test-section__camera:nth-child(6) .test-section__camera-img {
    max-width: 40px;
  }

  .test-section__camera-img.img-min {
    max-width: 81px;
  }

  .test-section__find-btn {
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .test-section__lists {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
  }

  .test-section__navigation {
    margin-top: 175px;
  }

  .test-section__buttons {
    max-width: 256px;
    width: 100%;
    margin: 24px auto 0 auto;
    flex-direction: column;
    row-gap: 16px;
  }

  .test-section__send-btn {
    font-weight: 500;
    line-height: normal !important;
    font-size: 15px !important;
    width: 100%;
  }

  .test-section__all-btn {
    font-weight: 500;
    line-height: normal !important;
    font-size: 15px !important;
    width: 100%;
  }

  .test-section__best-card {
    max-width: 242px;
  }

  .test-section__result-title {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    line-height: normal;
    color: #000;
    margin-bottom: 35px;
  }

  .test-section__result-best {
    margin-bottom: 24px;
  }

  .test-section__recommendation-cards {
    gap: 13px;
  }

  .test-section__recommendation-card {
    max-width: 168px;
    padding: 10px 15px;
  }

  .test-section__best-name,
  .test-section__recommendation-name {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
  }

  .test-section__best-link,
  .test-section__recommendation-link {
    margin: 6px 0 27px 0;
  }

  .test-section__recommendation-link {
    font-size: 12px;
  }

  .test-section__select-btn {
    padding: 10px 20px 12px 20px;
    width: 113px;
    height: 34px;
    font-size: 14px !important;
  }

  .test-section__best-price {
    font-size: 15px;
    line-height: normal;
  }

  .test-section__best-card-label {
    font-size: 15px;
    line-height: 18px;
    padding: 5px 17px;
    top: -18px;
  }

  .test-section__best-card:before {
    top: 9px;
  }

  .test-section__result-recommendations-label {
    font-size: 15px;
    line-height: 18px;
    padding: 5px 15px;
    margin-bottom: 10px;
  }
}

/* Popup settings */

.body-opened-popup {
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  max-width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(202, 202, 202, 0.5);
}

.popup_hidden {
  display: none;
}

.popup__wrapper {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__block {
  position: relative;
  box-sizing: border-box;
  max-width: 770px;
  width: 100%;
  margin: 15px;
  padding: 30px 20px;
  background-color: #fff;
}

@media (min-width: 769px) {
  .popup__block {
    padding: 51px 55px;
  }
}

.popup__close-btn {
  position: absolute;
  right: 14px;
  top: 17px;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url('../img/svg-icons/close.svg');
  background-position: 8px 8px;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.2s ease 0s;
}

@media (min-width: 769px) {
  .popup__close-btn {
    width: 40px;
    height: 40px;
    background-position: 13px 13px;
  }
}

.popup__close-btn:hover {
  opacity: 0.5;
}

.popup__title {
  font-family: "Intel Clear", "Menlo", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  text-align: center;
  margin: 0 0 20px 0;
}

@media (min-width: 769px) {
  .popup__title {
    font-size: 40px;
    margin: 0 0 60px 0;
  }
}

.popup__text {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .popup__text {
    font-size: 22px;
    margin: 0 0 30px;
  }
}

.popup__info-text {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  text-align: center;
}

.popup__btns-wrap {
  margin: 20px 0 0;
  text-align: center;
}

@media (min-width: 769px) {
  .popup__btns-wrap {
    margin: 30px 0 0;
  }
}

.checkbox-label__hidden-checkbox {
  margin-right: 13px;
}

.checkbox-label__text {
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

@media (min-width: 769px) {
  .checkbox-label__text {
    font-size: 20px;
  }
}

.checkbox-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}

@media (min-width: 769px) {
  .checkbox-label {
    font-size: 22px;
  }
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #0054ae;
  border-radius: 4px;
  width: 17px;
  height: 18px;
}

@media (min-width: 769px) {
  .checkmark {
    width: 23px;
    height: 24px;
  }
}

/* When the checkbox is checked, add a blue background */
.checkbox-label input:checked~.checkmark {
  background-color: #0054ae;
}

/* Show the checkmark when checked */
.checkbox-label input:checked~.checkmark:after {
  content: "";
  position: absolute;
  display: block;
}

/* Style the checkmark/indicator */
.checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media (min-width: 769px) {
  .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
  }
}