  .layout {
    display: flex;
    /* max-width: 780px; */
    padding: 0em 2em;
  }
  .layout__main {
    width: 100%;
    float: right;
    order: 1;
  }
  .layout__aside {
    width: 150px;
    margin-right: 50px;
    flex: 0 0 150px;
  }
  
  .checklist__title {
    margin-bottom: 0;
  }
  .checklist__description {
    border-bottom: 7px solid rgb(0, 0, 0);
    padding-bottom: 1em;
    margin-bottom: 0;
  }
  .checklist__checkbox {
    padding: 2.5em 0.5em;
    border-bottom: 1px solid #E9E9E9;
    display: flex;
    align-items: center;
    position: relative;
  }
  .checklist__checkbox input {
	visibility: hidden;
    width: 30px;
    flex: 0 0 30px;
    margin: 0 22.5px;
    text-align: center;
  }
  .checklist__checkbox input:checked ~ label::after {
    opacity: 1;
  }
  .checklist__checkbox label::before, .checklist__checkbox label::after {
    content: '';
    position: absolute;
    display: block;
    left: 22.5px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .checklist__checkbox label::before {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    border: 2px solid rgb(0, 0, 0);
    background: white;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .checklist__checkbox label:after {
    left: 29.5px;
    width: 12px;
    height: 7px;
    border: 2px solid rgb(0, 0, 0);
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: translate(5%, -70%) rotate(-45deg);
            transform: translate(5%, -70%) rotate(-45deg);
  }
  .checklist__checkbox label:hover::after {
    opacity: 0.2;
  }
  
  .service_country_tag {
	position:absolute;
	top:10px;
	right:10px;
	border: 1px solid #ddd;
	padding: 5px 10px;
  }
  