/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

/* Site Styling */
.single-img {
    width: 500px;
}
@media(max-width: 600px) {
    .single-img {
        width: 300px !important;
    }
}


@media(max-width: 991px) {
    .toog {
        display: block !important;
    }
}

@media(min-width: 992px) {
    .toog {
        display: none !important;
    }
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5px;
    gap: 0 15px;
    padding: 5px;
}

.profile-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.profile-img img {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-data {
    margin-top: 30px;
    font-size: 1.1rem;
}

.profile-data p i {
    color: black;
    font-weight: bold;
}

.btns {
    margin: 50px 0;
    display: flex;
    justify-content: space-evenly;
}

@media(max-width: 990px) {
    .profile-container {
        grid-template-columns: auto;
        margin: 0 20px;
        justify-content: center;
    }

    .profile-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .profile-img img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
        }

    .profile-data {
        width: 100%;
    }

    .btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
    }
}



/* Change Profile */
input[type="file"] {
    position: relative;
}

    input[type="file"]::file-selector-button {
        width: 136px;
        color: transparent;
    }

    /* Faked label styles and icon */
    input[type="file"]::before {
        position: absolute;
        pointer-events: none;
        top: 10px;
        left: 16px;
        height: 20px;
        width: 20px;
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
    }

    input[type="file"]::after {
        position: absolute;
        pointer-events: none;
        top: 11px;
        left: 40px;
        color: #0964b0;
        content: "Upload File";
    }

    /* ------- From Step 1 ------- */

    /* file upload button */
    input[type="file"]::file-selector-button {
        border-radius: 4px;
        padding: 0 16px;
        height: 40px;
        cursor: pointer;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.16);
        box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
        margin-right: 16px;
        transition: background-color 200ms;
    }

        /* file upload button hover state */
        input[type="file"]::file-selector-button:hover {
            background-color: #f3f4f6;
        }

        /* file upload button active state */
        input[type="file"]::file-selector-button:active {
            background-color: #e5e7eb;
        }

.profile-img-change {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

    .profile-img-change img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

.pwd-change {
    margin-top: 50px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

/* Carousel */
@media(max-width: 500px) {
    .mobile-carousel {
        height: 140px !important;
        width: 100% !important;
    }
}
@media(min-width: 501px) {
    .mobile-carousel {
        height: 250px !important;
        width: 100% !important;
    }
}
@media(min-width: 991px) {
    .mobile-carousel {
        height: 430px !important;
        width: 100% !important;
    }
}

/* Product Input */
.copy-input {
    margin-top: 15px;
    width: 55%;
    border: 1px solid gray;
    height: 30px;
    padding: 10px;
    font-size: 13px;
}

/* Contact Whatsapp */
.contact-whats {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 11;
    border-radius: 50%;
}