/* COMMON */
:root {
    --primaryGreen: #0CBF9B;
    --darkColor: #070A0B;
    --blackColor: #000;
    --whiteColor: #fff;
    --grayBgColor: #F6F9FA;
    --grayTextColor: #55676D;
}

.container {
    max-width: 1380px; /*max width (1320px) + 2 paddings 30px each)*/
    padding: 0px 30px;
    margin: 0 auto;
}

.smallContainer {
    max-width: 1160px; 
    padding: 0px 30px;
    margin: 0 auto;
	width: 100%;
}

body {
    /*Fonts*/
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    /* Page */
    margin: 0;
	overflow-x: hidden;
}

/* ---------------------------- Default ----------------------------*/

.announcementBar-wrapper {
    background: var(--primaryGreen);
    padding: 12px 0px;
}

.announcementBar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement {
    padding: 0px 12px;
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
} 

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px; 
}

.header-nav, .header-list {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0px;
    margin: 0px;
    z-index: 7;
}

.header-list {
    gap: 24px;  
    transition: 0.3s ease-in-out;
} 

.header-list > li > a {
	transition: 0.2s ease-in-out;
} 

.header-list > li >a:hover {
    color: var(--primaryGreen);
} 

.active-page {
    font-weight: 600 !important;
    color: var(--darkColor) !important;
}

.myAccount {
    display: none;
}

.header-logo {
    position: relative;
    z-index: 7;
}

.nav-toggle {
    display: flex;
    align-items: center;
}

.header-list > li > a , .dropdown-link {
    text-decoration: none;
    color: var(--grayTextColor);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: center;
} 

.header-list > li , .dropdown-menu > li {
    list-style: none;
}

.tabIcon, .closeIcon {
    display: none;
}

/* DROPDOWN MENU */
.sellStuffLink {
    justify-content: center;
    max-width: 100px;
}

.dropdown-link {
    padding: 8px 16px 8px 16px;
    transition: background-color .3s;
    width: 232px;
}

.dropdown-menu {
    padding: 0px;
}

.dropdown-item:hover .dropDownArrow{
    transform: rotate(180deg);
    transition: .3s ease-in-out;
}

.dropdown-item:hover .dropdown-menu {
    max-height: 1000px;
    transition: max-height .4s ease-in;

}

.dropdown-link:hover {
    background-color: #efefef;
} 

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
    position: absolute;
    background-color: var(--whiteColor);
    border-radius: 12px;
    z-index: 3;
    box-shadow: -4px 4px 12px 0px #282E3D14;
}

/* Header Left Side */
.leftSide {
    display: flex;
    align-items: center;
}

.phoneNumber, .searchIcon, .accountIcon , .tabIcon  {
    padding: 12px;
    display: flex;
    align-items: center;
    transition: 0.1s ease-in-out;
	cursor: pointer;
} 

.phoneNumber:hover {
    color: var(--primaryGreen);
}

.header-cart {
    padding: 12px 0px 12px 12px;
    display: flex;
    align-items: center;
}

.phoneNumber , .header-cart  {
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: var(--darkColor);
}

/* FOOTER */
footer {
    bottom: 0;
}

.footer-container  {
    padding: 80px 30px 0px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 24px;
}

.footer-rightSide {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
    gap: 24px;
    max-width: 368px;
}

.footer-leftSide {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-phoneNum, .footer-email, .footer-address{
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    color: var(--darkColor);
    transition: 0.1s ease-in-out;
 }

.footer-phoneNum:hover, .footer-email:hover, .footer-address:hover{
    color: var(--primaryGreen);
 }

 .footer-desc {
    margin-top: 24px ;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #9FA8AB;
 }

.footer-line {
    width: 100%, !important;
    color: #9FA8AB;
}

.footer-copyrights {
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: -0.02em;
    color: #9FA8AB;
    margin: 24px 0px;
}

.footer-linkTitle {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color:#9FA8AB;
    margin: 0px 0px 24px;
}

.legal-links > ul, .company-links > ul {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0px;
}

.legal-links > ul > li , .company-links > ul > li  {
    list-style: none;
}

.legal-links > ul > li > a, .company-links > ul > li > a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--darkColor);
    transition: 0.2s ease-in-out;
}

.legal-links > ul > li > a:hover, .company-links > ul > li > a:hover {
    color: var(--primaryGreen);
}

.footer-line {
    border-top: 1px solid #ECEFF0 ;
}

/* Root Links */
.rootLinksList {
    display: flex;
    align-items: center;
    list-style: none;
    color: #8E9EA3;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    padding: 0px;
    flex-wrap: wrap;
}

.rootLinksList > li > a {
    color: #8E9EA3;
    transition: 0.3s ease-in-out;
}

.rootLinksList > li > a:hover {
    color: var(--primaryGreen);
}

.rootLinksList > li > img {
    margin: 0px 6px;
}

/* SELL ELECTRONICS PAGE — Selling Tips */
.overlay , .overlayIMEI {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 7;
    overflow-y: hidden;
}

body.modal-open {
    overflow: hidden !important;
}

.guidelines-container ,.imei-container {
    padding: 24px 80px 80px;
    position: relative; 
    width: 100%;
    max-width: 790px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 8; 
    border-radius: 24px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

.guidelinesGetQuote , .imeiGetQuote{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.getQuote {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    color: #8E9EA3;
}

.guidelinesCloseBTN {
    cursor: pointer;
}

.guidelinesTitle {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-align: start;
    color: var(--darkColor);
    margin-bottom: 16px;
}

.guidelinesDesc {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #687479;
}

.guidelines-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conditions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.condition-div {
    padding: 16px !important;
    border-radius: 20px !important;
    cursor: pointer;
    background-color: #F6F9FA;
}

.condition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.condition-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #070A0B !important;
}

.desc-p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0 ;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 20px !important;
    text-align: left;
    margin-top: 4px !important;
    color: #55676D;
}

.answerIsActive {
    max-height: 200px; 
    opacity: 1;
}

.dropdown-img {
    transition: transform 0.3s ease-in-out;
    margin-left: 15px;
}

.dropdownIsActive {
    transform: rotate(180deg);
}

/* ---------------------------- Default ----------------------------*/

/* Breadcrumps NavXT */
.breadcrumbs {
    max-width: 1380px;
    padding: 0px 30px;
    margin: 0 auto;
	display: flex;
	gap: 8px;
    align-items: center;
    list-style: none;
    color: #8E9EA3;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.breadcrumbs > span > a > span {
    color: #8E9EA3 !important;
    transition: 0.3s ease-in-out;
}

.breadcrumbs > span > a > span:hover {
    color: var(--primaryGreen) !important;
}

.breadcrumbs > span:last-child {
    color: #070A0B !important;
}

/* 404 */
.page-not-found-wrapper {
    padding: 160px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.page-not-found-title {
    font-size: 115px;
    font-weight: 900;
    background: -webkit-linear-gradient(0deg, #0CBF9B, #66EF98 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-not-found-p{
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #909DA2;
}

.page-not-found-p > a  {
    color: var(--primaryGreen);
}


/* Call Us Button */
.button-wrapper {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 5px;
    align-items: center;
    justify-content: center;
}

.action-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 7px;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 20px 0px #282E3D70;
}

.main-action-button {
    display: inline-flex;
    margin-top: 5px;
    width: 47px !important;
    height: 47px !important;
    padding: 7px;
    background-color: #0CBF9B;
    border-radius: 90px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 20px 0px #282E3D70;
}

.phone-action-btn, .address-action-btn, .sms-action-btn, .whatsApp-action-btn{
    background-color: #008b70;
}

.main-action-button-icon, .close-action-button-icon {
    width: 80%;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.button-wrapper .action-button {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}

.button-wrapper.active .action-button {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.close-action-button-icon{
    width: 0%;
    height: auto;
}

.close-action-button-icon.active {
    width: 80%;
    height: auto;
}

.main-action-button-icon.hidden {
    width: 0%;
    height: auto;
}

.button-wrapper .action-button:nth-child(2) { transition-delay: 0.05s; }
.button-wrapper .action-button:nth-child(3) { transition-delay: 0.1s; }
.button-wrapper .action-button:nth-child(4) { transition-delay: 0.15s; }
.button-wrapper .action-button:nth-child(5) { transition-delay: 0.2s; }

/* Swiper */
.easy-steps-mobile{
    display: none;
    margin-top: 50px;
}

.slider-wrapper {
    max-height: 25rem;    
}
 
.slider-wrapper figure {
    position: relative;
    overflow: hidden;
    padding-bottom: 65%;
}
 
.slider-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.swiper-pagination-bullet-active {
    background: #0CBF9B !important;
}

.swiper-pagination {
    position: relative !important;
    z-index: 1;
}

/* New Text Blocks CSS */
.new_text_blocks{
    padding: 120px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.new_text_block {
	margin-bottom: 40px;
}

.paragraph_title {
    font-size: 35px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: var(--darkColor);
    margin-bottom: 15px;
}

.paragraph_text, .paragraph_text > * {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #55676D;
}

/* .new_text_block > div {
    display: flex;
    justify-content: center;
} */

.paragraph_image_wrapper {
    display: flex;
    justify-content: center;
}

.paragraph_image {
    margin-top: 30px;
    width: 80%;
    height: auto;
}
