﻿@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=Noto+Sans+Arabic:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

body {
    font-family: "El Messiri", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "El Messiri", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
}

.accordion {
    /*background-color: #eee;*/
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active,
.accordion:hover {
    /*background-color: #ccc;*/
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}

.btn-primary {
    background:rgb(7 121 121);
    border-color:rgb(7 121 121);
    color:#fff;
}

.btn-primary:hover {
    background:rgb(6, 99, 99) !important;
    border-color:rgb(6, 99, 99) !important;
    color:#fff;
}

.btn-outline-primary {
    background:rgb(255 255 255);
    border-color:rgb(7 121 121);
    color:rgb(7 121 121);
}

.btn-outline-primary:hover {
    background:rgb(245, 245, 245) !important;
    border-color:rgb(7 121 121) !important;
    color:rgb(7 121 121);
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

.section-title {
    font-size: 17px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom: solid 1px #ffffff;
}

.section-title-text {
    text-wrap: wrap;
}

.button-title-right {
    font-size: 20px;
    border-bottom-right-radius: 10px;
    padding-right: 10px;
    padding-left: 10px;
}

.button-title-left {
    font-size: 20px;
    border-bottom-left-radius: 10px;
    padding-right: 10px;
    padding-left: 10px;
}

.button-subtract {
    font-size: 20px;
    border-bottom-left-radius: 10px;
    padding-right: 0px;
    padding-left: 10px;
}

.button-reset {
    font-size: 20px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.button-counter {
    font-size: 20px;
    /*border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;*/
}

.button-conter-subtract {
    background: rgb(240, 240, 240);
    color: #000;
    font-weight: bold;
    width: 40px;
}

.nav-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-color-01 {
    background: rgb(0, 153, 153);
}

.nav-color-01-alpha {
    background: rgb(0, 153, 153, 0.5);
}

.header-color-01 {
    background: rgb(255, 217, 102);
}

.header-color-01-alpha {
    background: rgb(255, 217, 102, 0.5);
}

.header-color-02 {
    background: rgb(255, 204, 153);
}

.header-color-02-alpha {
    background: rgb(255, 204, 153, 0.5);
}

.color-00 {
    background: rgb(240, 240, 240);
}

.color-00-alpha {
    background: rgb(240, 240, 240, 0.5);
}

.color-01 {
    background: rgb(180, 167, 214);
}

.color-01-alpha {
    background: rgb(180, 167, 214, 0.5);
}

.color-02 {
    background: rgb(201, 218, 248);
}

.color-02-alpha {
    background: rgb(201, 218, 248, 0.5);
}

.color-03 {
    background: rgb(213, 166, 189);
}

.color-03-alpha {
    background: rgb(213, 166, 189, 0.5);
}

.color-04 {
    background: rgb(201, 218, 248);
}

.color-04-alpha {
    background: rgb(201, 218, 248, 0.5);
}

.color-05 {
    background: rgb(182, 215, 168);
}

.color-05-alpha {
    background: rgb(182, 215, 168, 0.5);
}

.color-06 {
    background: rgb(255, 204, 153);
}

.color-06-alpha {
    background: rgb(255, 204, 153, 0.5);
}

.color-07 {
    background: rgb(255, 217, 102);
}

.color-07-alpha {
    background: rgb(255, 217, 102, 0.5);
}

.container-padding {
    padding: 0px 0px 10px 0px;
}

.cost {
    background: rgb(255, 255, 255, 0.7);
    color: rgb(0, 0, 0, 0.85);
    font-weight: bold;
    font-size: 13px;
    width: 30px;
    height: 30px;
    padding-top: 7px;
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.w3-container, .w3-panel {
    padding: 0.01em 10px;
}

.container {
    margin-top:15px;
    max-width: 1000px;
}

.w3-top, .w3-bottom {
    position: relative;
}

.form-check .form-check-input {
    float: unset;
    margin-left: unset;
}

.add-button button {
    text-align: center;
    padding:6px 20px 3px 20px;
}

@media (max-width: 900px) {
    .w3-top .w3-bar-item {
        text-align: center;
        display: block;
        float: unset !important;
    }

    .card-body button {
        width:100% !important;
    }

    .add-button button {
        width:100%;
    }
}