* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(211, 211, 211, 0.404);
}

/* header section start */

form input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    font-size: 20px;
}

form .bg-light {
    background-color: #f2f2f2;
    padding-left: 45px;
    padding-bottom: 4px;
}

form i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    padding-left: 5px;
}

::placeholder {
    color: gray;
    font-size: 20px;
}

.arrow i {
    display: inline-block;
    transition: all 0.3s ease;
}

a.login {
    color: black;
    transition: all 0.3s ease;
    padding: 10px 6px;
    border-radius: 5px;
}

a.login:hover {
    background-color: blue;
    color: white;
}

a.login:hover .arrow i {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    width: 270px;
    margin-top: 1.5rem;
    z-index: 1000;
}

.dropdown-wrapper:hover .nav-dropdown {
    display: block;
}

.nav-dropdown li:hover {
    background-color: #f8f9fa;
}

.dots i {
    display: inline-block;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

a.dots:hover i {
    background-color: rgba(128, 128, 128, 0.103);
    border: 1px solid black;
    border-radius: 5px;
}

/* header section end */

/* accessories section start */

.accessories {
    background-color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.accessories .acc1 .acc1-text {
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.accessories .acc1 .acc1-text p i {
    font-size: 12px;
    font-weight: bold;
}

/* accessories section end */

/* aside section start */

aside .btns button{
    transition: all 0.7s ease;
}

aside .btns button:hover{
    text-decoration: line-through;
}

aside .price .range-input input::placeholder{
    font-size: 14px;
}

aside .brand .accordion-body .form-check input::placeholder{
    font-size: 14px;
}

/* aside section end */

/* footer section start */

footer .about h6,
footer .group h6,
footer .help h6,
footer .policy h6 {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

footer .about ul li a,
footer .group ul li a,
footer .help ul li a,
footer .policy ul li a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer .about ul li a:hover,
footer .group ul li a:hover,
footer .help ul li a:hover,
footer .policy ul li a:hover {
    text-decoration: underline;
}

footer .foot2 h6 {
    font-size: 12px;
    font-weight: 500;
}

footer .foot2 .mail p {
    color: white;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

footer .foot3 a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    /* margin-right: 15px; */
}

footer .foot3 a i {
    color: gold;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    /* margin-right: 15px; */
}

/* footer section end */