.container {
    padding: 0px 9%;
    display: flex;

    .left {
        height: 100%;
        flex: 3;
        span.name {
            font-size: 1.2rem;
            line-height: 3rem;
        }
        img {
            width: 100%;
        }
        .span-bottom-title {
            display: block;
            font-weight: bold;
        }
        .span-bottom-content {
            display: block;
        }
    }

    .right {
        height: 100%;
        flex: 7;
        padding: 44px 38px 12px;
        .right-header {
            display: flex;
            flex-direction: column;
        }
        .country {

        }
        .extra {
            line-height: 2.4rem;
        }
        .img-group {
            .img-item {
                margin: 14px 0;
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
                img {
                    width: calc(20% - 20px);
                    /*height: 100%;*/
                }
            }
        }
    }

}

.custom-select {
    position: relative;
    width: 54%;
    margin: 17px 0px;
    text-align: center;
}
.selected-option {
    padding: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.options {
    text-align: left;
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f7f4ed;
    a {
        width: 100%;
        display: block;
    }
}
.options li {
    padding: 8px;
    cursor: pointer;
}
.options li:hover {
    background: #f0f0f0;
}
