.destination__country {
    width: 100%;
    text-align: center
}

.destination__country__button {
    margin: 5px;
    display: inline-block
}

.country__destinations {
    width: 100%;
    text-align: center
}

.country__destinations__button {
    margin: 5px;
    display: inline-block
}

.destination__map {
    width: 100%;
    text-align: center
}

.country__map {
    width: 100%;
    text-align: center
}

.destination__map {
    width: 100%;
    height: 60vh;
    min-height: 600px;
    position: relative;
    overflow: hidden
}

.destination__map svg {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: #f2f2f2;
    fill: #b6c489;
    stroke: #f2e5d2;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

@media only screen and (min-width:800px) {
    .destination__map {
        height: 80vh;
        min-height: 800px
    }
}

@media only screen and (min-width:1600px) {
    .destination__map {
        height: 90vh;
        min-height: 800px
    }

    .destination__map svg {
        -webkit-transform: scale(1.3) translateY(-3%);
        transform: scale(1.3) translateY(-3%)
    }
}

.destination__map #destination_hover_country_name {
    background-color: rgba(0, 0, 0, .6);
    color: #f2f2f2;
    padding: 16px 20px;
    font-size: 28px;
    border-radius: 5px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transition: fill .4s ease;
    -o-transition: fill .4s ease;
    transition: fill .4s ease;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.destination__map svg path {
    -webkit-transition: fill .2s ease;
    -o-transition: fill .2s ease;
    transition: fill .2s ease
}

.destination__map svg .visited {
    fill: #61664a
}

.destination__map svg .visited:hover {
    fill: #b0907d;
    cursor: pointer
}

.all-countries {
    width: 100%;
    text-align: center
}

.continent {
    margin-bottom: 20px
}

.related-posts,
.related-posts__post {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-flow: column;
    flex-flow: column
}

.related-posts__post {
    padding-bottom: 25px
}

.related-posts__post a {
    color: #666
}

@media only screen and (min-width:500px) {
    .related-posts {
        -ms-flex-flow: row;
        flex-flow: row
    }

    .related-posts__post {
        width: 50%;
        padding: 0 10px
    }
}

@media only screen and (min-width:1000px) {
    .related-posts__post {
        width: 25%
    }
}

input.tttde-input {
    background: #f1f5f9;
    max-height: 30px;
    border: 0;
    border-radius: 3px;
    padding: 7px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease;
    color: #4c5866;
    font-family: Open Sans, Helvetica, Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    display: block;
    width: 100%
}

input.tttde-input:focus {
    background: #e6ecf2
}

input.tttde-input::-webkit-input-placeholder {
    color: #98a7b8
}

input.tttde-input:-moz-placeholder,
input.tttde-input::-moz-placeholder {
    color: #98a7b8
}

input.tttde-input:-ms-input-placeholder {
    color: #98a7b8
}

input.tttde-input[readonly] {
    background: #fff !important;
    border: 1px solid #eaedf0 !important;
    cursor: not-allowed
}