* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.Menu img {
    width: 35px;
    cursor: pointer;
    margin: 30px 12px 0px;
    transition: 0.2s;
}

.Menu img:hover {

    box-shadow: 1px 1px 5px 2px #dee2e6;
}

.sidenav {
    width: 20%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 99;
    background-color: #f8f9fa;
    overflow-x: hidden;
    padding-top: 50px;
    box-shadow: 1px 0px 8px 1px #adb5bd;
    transition: 0.4s;
}

.sidenav .btnClose {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    transition: 0.1s;
}

.sidenav .btnClose:hover {
    background: #dcdbdb;
    padding: 3px;
}

.sidenav a:not(.logo) {
    display: flex;
    gap: 5px;
    padding: 6px 8px 22px 20px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    transition: 0.5s;
}

.sidenav .logo {
    font-size: 28px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: block;
    text-decoration: none;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 12px 0px 30px;
    text-align: center;
}

.sidenav img {
    width: 30px;
}

.sidenav .items {
    padding-top: 20px;
}

.sidenav a:not(.logo):hover {
    background-color: #dee2e6;
}

@media screen and (max-width: 1200px) {
    .sidenav {
        width: 35%;
    }
}

@media screen and (max-width: 990px) {
    .sidenav {
        width: 30%;
    }

    .sidenav .logo {
        font-size: 26px;
        padding: 12px 6px;
    }

    .sidenav a:not(.logo) {
        font-size: 17px;
        padding: 6px 8px 22px 16px;
    }

    .sidenav img {
        width: 22px;
    }

    .sidenav .btnClose {
        display: block;
    }
}

@media screen and (max-width: 700px) {
    .sidenav {
        width: 0%;
    }

    .sidenav .logo {
        font-size: 20px;
        padding: 12px 3px;
    }

    .sidenav a:not(.logo) {
        font-size: 14px;
        padding: 6px 8px 22px 10px;
    }

    .sidenav img {
        width: 20px;
    }

}

/* =============    ===============*/

.main-content {
    width: 90vw;
    padding-top: 10px;
}

.main-content .box {
    margin-left: 450px;
    padding: 25px;
    box-sizing: border-box;
}

.box h3 {
    font-size: 22px;
    text-align: center;
    padding-bottom: 25px;
}

.main-content .accordion {
    background-color: #f8f9fa;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: #dee2e6;
}

.accordion:after {
    content: '\002B';
    font-size: 25px;
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active::after {
    content: "\2212";
}

.accordion.active {
    background-color: #dee2e6;
    border: 3px solid #e9ecef;
}

.panel {
    padding: 0 18 px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel .row {
    display: flex;
    padding: 12px;
    justify-content: flex-start;
    border: 2px solid #dee2e6;
}

.panel .col_2 {
    margin: 0px 30px 10px;
}

.panel .price_Table {
    border-collapse: collapse;
    width: 310px;
}

.price_Table th,
td {
    border: 2px solid #ddd;
    padding: 8px 30px;
    text-align: center;
}

.price_Table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.price_Table th {
    font-size: 17px;
    padding: 12px 30px;
    background-color: #48cae4;
}

.price_Table td {
    font-size: 16px;
}

.panel img {
    width: 500px;
    height: 300px;
}

.panel .link {
    padding-top: 22px;
    line-height: 1.5;
}


.btnBuy {
    font-size: 18px;
    color: white;
    width: 200px;
    padding: 12px 22px;
    background-color: #4361ee;
    border: none;
    outline: none;
    border-radius: 5px;
    margin: 20px 0px 20px;
}

@media screen and (max-width: 1200px) {

    .panel img {
        width: 500px;
        height: 380px;
        
    }

    .main-content .panel .row {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 990px) {
    .main-content {
        width: 90vw;
    }
    .main-content .box {
        margin-left: 350px;
    }
    
    .panel img {
        width: 310px;
        height: 200px;
    }

    .main-content .panel .row {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 910px) {

    .panel img {
        width: 310px;
        height: 200px;
    }

    .main-content .panel .row {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 700px) {
    .main-content {
        width: 100vw;
    }

    .main-content .box {
        margin-left: 250px;
        margin: 0;
        padding: 12px;
    }

    .main-content .panel .row { 
        flex-direction: column;
        align-items: center;
     }

    .panel .col_2 {
        margin-top: 10px;
    }

    .btnBuy {
        width: 100%;
    }

    .panel .link h4 {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .panel img {
        width: 310px;
        height: 200px;
    }

    .price_Table th,
    td {
        padding: 8px 10px;
        font-size: 14px;
    }

    .price_Table th {
        font-size: 16px;
    }
}


/*========= Contact ==========*/

.contact {
    display: flex;
    flex-direction: column;

}

.content-link {
    display: flex;
    gap: 10px;

}

.contact img {
    width: 110px;

}

.content-link .btnMessage {
    font-size: 22px;
    color: white;
    width: 200px;
    padding: 22px 25px;
    background-color: #4361ee;
    border: none;
    outline: none;
    border-radius: 5px;
    margin: 20px 0px 20px;
}

.btnMessage:hover {
    background: #3cb0fd;
}

@media screen and (max-width: 700px) {
    .content-link {
        margin: auto;

    }

}


@media screen and (max-width: 576px) {
    .content-link .btnMessage {
        font-size: 18px;
        padding: 20px 18px;
    }
}

/* tool rent */

.Tb_rent th {
    background-color: #9381ff;
}

/* tool credit */
.Tb_credit th {
    background-color: #ff6b35;
}

/* remote service */
.Tb_remote th {
    background-color: #01ff09;
}

/* Locked Global Roms */
.roms {
    border: 1px solid #dee2e6;
    margin: 6px;
    border-radius: 5px;
}

.roms-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    position: relative;

}

.roms .roms-icon {
    width: 100px;
    height: 100px;
}

.roms-flex {
    display: flex;
    gap: 12px;
}

.roms .roms-flex .right {
    line-height: 32px;
}

.roms .roms-Btn {
    width: 150px;
    background-color: #2196f3;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 20px;

}

.roms .roms-Btn:hover {
    background-color: #3cb0fd;
}

@media screen and (max-width: 576px) {
    .roms .roms-icon {
        width: 80px;
        height: 80px;
    }

    .roms .roms-Btn {
        width: 100px;
        font-size: 14px;
        right: 10px;
        bottom: 5px;
    }

    .roms .roms-flex .right {
        line-height: 25px;
        font-size: 15px;
    }

    .roms-row {
        padding: 24px;
    }
}


/* Top Button */

.btn_top {
    box-shadow: 0px 2px 5px 0px #4a485b;
    background: linear-gradient(to bottom, #84d4f2 10%, #019ad2 100%);
    background-color: #33bdef;
    border-radius: 40px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    font-weight: bold;
    padding: 10px 13px;
    text-decoration: none;
    position: absolute;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.btn_top:hover {
    background: linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
    background-color: #019ad2;
}