.card {
    width: 100%;
    background: #1F1F21;
    border-radius: 24px;
    padding: 30px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.region-header {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    /* letter-spacing: -0.3px; */
    margin-bottom: 10px;
    /* border-bottom: 1px solid #eef2f6; */
    /* padding-bottom: 18px; */
}

.dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.card:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.tabs-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Manrope", sans-serif;
}

.tab {
    background: rgb(0 0 0 / 50%);
    border-radius: 12px;
    padding: 11px 15px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1px solid #ffffff;
    text-align: left;
    width: 100%;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    outline: none!important;
}

.tab:hover,
.tab.active {
    background: rgb(1 171 71 / 30%);
    border-color: #01ab47;
    box-shadow: 0 2px 6px rgba(0, 70, 150, 0.05);
}

.tab .tab-name {
    font-weight: bold;
    font-size: 14px;
    color: #F8FAFC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab .tab-badge {
    font-size: 12px;
    font-weight: 400;
    color: #3a5670;
    background: #e2ebf5;
    padding: 2px 12px;
    border-radius: 40px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.tab .tab-desc {
    font-size: 13px;
    color: #D4D4D4;
    margin-top: 3px;
    line-height: 1.4;
    text-align: left;
}

.tab-divider {
    border: 0;
    border-top: 1px dashed #d9e2ed;
    margin: 4px 0 8px 0;
}

.tab.ates-tab {
    /* background: #e5edf9; */
    /* border: 1px solid #c8d9ef; */
    /* margin-top: 4px; */
}

.tab.ates-tab .tab-name {
    /* color: #10355e; */
}

.right-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.country-section {
    width: 65%;
}

.country-grid-title {
    /* font-size: 14px; */
    /* font-weight: 500; */
    /* color: #ffffff; */
    /* letter-spacing: 0.4px; */
    /* padding: 0 20px 12px 20px; */
    /* border-bottom: 1px solid #e5ecf5; */
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: "Manrope", sans-serif;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
}

.country-chip {
    background: white;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 450;
    color: #ffffff;
    transition: all 0.1s ease;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    border: 1px solid #ffffff;
}

.country-chip:hover,
.country-chip.active {
    background: rgb(1 171 71 / 30%);
    border-color: #01ab47;
    color: white;
    box-shadow: 0 4px 8px rgba(26, 67, 133, 0.15);
}
.country-chip:hover h3,
.country-chip.active h3 {
    color: #fff;
}
.info-card {
    background: linear-gradient(121.945deg, #08080A 0%, #292B2E 35%, #474A4F 55%, #1C1C1F 80%, #08080A 100%);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    width: 35%;
    font-family: "Manrope", sans-serif;
}

.info-card .region-tag {
    display: inline-block;
    border-radius: 60px;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0;
    margin-bottom: 10px;
    align-self: flex-start;
    text-transform: uppercase;
    opacity: 0.8;
}

.info-card .country-name-large {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.info-card .country-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #94A3B8;
    max-width: 90%;
    margin-bottom: 20px;
    flex: 1;
}
.info-card .btn-new,
.info-card .action-btn {
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    height: 46px;
    outline: none!important;
}

.info-card .action-btn:hover {
    /* background: #123158; */
}

.panel {
    display: none;
    align-items: flex-start;
    gap: 30px;
}

.panel.active {
    display: flex;
}
.country-chip .continent-item__flag {
    position: relative;
    flex-shrink: 0;
}

.country-chip .continent-item__flag img {
    width: 18px;
    height: 18px;
    border-radius: 100px;
}

.country-chip h3 {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    line-height: 1.2;
}

.country-chip {
    display: flex;
    align-items: center;
    gap: 10px;
}
.country-btn a.btn-new.btn-border {
    background: transparent;
    width: 100%;
    height: 46px;
}

.country-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
button.tab-btn {
    display: flex;
    width: 100%;
    background: transparent;
    border: 0;
    flex-direction: column;
    justify-content: flex-start;
    outline: none!important;
    padding: 0;
    position: relative;
    pointer-events: none;
}
.tab-wrp__europe-mobile {
    display: none;
}
.country-btn-tabs button {
    height: 40px;
    font-size: 14px;
    border-radius: 12px;
    width: 100%;
}

.country-btn-tabs {
    padding-top: 15px;
}





@media (max-width: 1260px) {
.country-grid {
    grid-template-columns: repeat(2, 1fr);
}

.country-section {
    width: 60%;
}

.info-card {
    width: 40%;
}
}





@media (max-width: 1100px) {
.country-grid {
    grid-template-columns: repeat(2, 1fr);
}

.country-section {
    width: 60%;
}

.info-card {
    width: 40%;
}

.right-panel {
    display: none;
}

.dashboard {
    grid-template-columns: 1fr;
}

.region-header {
    display: none;
}
.tab-wrp__europe-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.tab-wrp__europe-mobile__list span.continent-item__flag {
    position: relative;
    flex-shrink: 0;
    display: flex;
}

.tab-wrp__europe-mobile__list span.continent-item__flag img {
    width: 18px;
    height: 18px;
}

.tab-wrp__europe-mobile__list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.card-visa__wrp {
    background: #E8EDF2;
}

.card-visa__wrp .card {
    background: none!important;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.card:before {
    display: none;
}

.tab {
    border: 0;
    background: #fff;
    padding: 0;
}

.tab:hover, .tab.active {
    background: #fff;
    color: #1A1C1E;
}

.tab .tab-name {
    color: #1A1C1E;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
}

.tabs-vertical {
    gap: 15px;
}

.tab .tab-desc {
    color: #595959;
}

.tab .tab-name:before {
    width: 8px;
    height: 8px;
    background: #01ab47;
    position: absolute;
    content: "";
    border-radius: 100px;
    left: 0;
    top: 8px;
}


.tab-wrp__europe-mobile__desc {
    font-size: 14px;
    color: #595959;
}
.tab-wrp__europe-mobile__list ul li a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 10px;
    background: #E8EDF2;
    color: #000;
    border-radius: 12px;
    box-shadow: 0px 0px 0px 0px #01ab47;
    transition: .2s;
}
.tab-wrp__europe-mobile__list ul li a:hover {
    text-decoration: none;
    box-shadow: 0px 0px 0px 1px #01ab47;
}

button.tab-btn:after {
    content: "";
    background:url(../img/chevron-downnew.svg);
    position: absolute;
    width: 18px;
    height: 18px;
    right: 15px;
}
.tab-wrp__europe-mobile {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, 
                padding-top 0.4s ease-in-out,
                padding-bottom 0.4s ease-in-out,
                opacity 0.3s ease-in-out;
    padding: 0px 20px 20px 20px;
}

.tab.open .tab-wrp__europe-mobile {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease-in-out;
}

.tab-btn {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {

    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.tab.open .tab-btn::after {
    transform: translateY(-50%) rotate(180deg);
}


.tab-wrp__europe-mobile__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.tab-wrp__europe-mobile__list li:last-child {
    border-bottom: none;
}

.tab-wrp__europe-mobile__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.tab-wrp__europe-mobile__list a:hover {
    color: #0073aa;
}

.continent-item__flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}
button.tab-btn {
    pointer-events: auto;
    padding: 20px;
}
.card {
    min-height: auto;
}




}


@media (max-width: 1023px) {
.tab-wrp__europe-mobile__list ul {
    grid-template-columns: repeat(3, 1fr);
}







}


@media (max-width: 767px) {
.tab-wrp__europe-mobile__list ul {
    grid-template-columns: repeat(2, 1fr);
}







}