﻿body {
}

.rate-section {
    padding-top: 100px;
}

.rate-info {
    margin-bottom: 30px;

}
.w-100 {
    text-align: center;
    width: 100%;
}
.state {
    position: relative;
}
#rate input {
    border-radius: 0;
}
.text-end {
    text-align:end;
}
label.error {
    color: red;
    font-size: 12px;
    margin-left: 5px;
    display: inline;
}
.my-btn {
    background-color: #b74242;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 400;
    border-radius: 30px;
    text-align: center;
    padding: .9em;
    align-content: center;
    text-decoration: none;
    transition: .3s ease-in-out;
}

.my-btn:hover {
    outline: 2px solid #b74242;
    color: #b74242;
    background-color: white;
    text-decoration: none;
}

/* NavBar */

.space-for-nav {
    margin-top: 6em;
    content: "";
}

.logo-size {
    width: 100px;
    height: auto;

}

.nav-link {
    transition: .5s ease-in-out;
}

.nav-link:hover {
    border-radius: 3px;
    box-shadow: darkgray 2px 2px 2px 2px;
}

.search-results-container {
    position: absolute;
    margin-top: 20px;
    left: -234px;
    display: none;
}

.result-list {
    list-style: none;
    width: 390px;
    max-height: 300px;
    padding-left: 0;
    margin-left: 39px;
    background-color: white;
    overflow-y: scroll;
    border: 1px solid #e0e0e0;
    border-top: 0;
}

.result-item {
    padding: 10px 20px;
    width: 360px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media only screen and (max-width: 600px) {
    .search-results-container {
        position: absolute;
        margin-top: 20px;
        left: 0;
    }

    .result-list {
        list-style: none;
        width: 390px;
        height: 100px;
        padding-left: 0;
        margin-left: 39px;
        background-color: white;
        overflow-y: scroll;
        border: 1px solid #e0e0e0;
        border-top: 0;
    }

    .result-item {
        padding: 10px 20px;
        width: 380px;
        height: 30px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* */
.icon-size {
    font-size: 30px;
    width: 35px;
    text-align: center;
}

.card-text-layout {
    display: flex;
}

.card-text-item > .card-text {
    margin: .5em 0;
}

.card-text-item {
    flex: 1;
    margin: auto 1em;
}

.card-text {
    text-align: left;
    font-size: 1em;
}

/* Index page */
.index-icon-bg {
    color: #5b0fd5;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 50px;
    width: 70px;
    height: 70px;
    font-size: 2.7em;
}
    /* Carousel Captions */

.carousel-captions-container {
    position: absolute;
    top: 10%;
    left: 10%;
    display: flex;
    flex-direction:column;
    font-size: 1.2vw;
}

.carousel-header-container {
    /*position: absolute;
    top: 20%;
    left: 10%;*/
    
}

.carousel-header-caption {
    color: white;
    padding: .2em .2em;
    font-size: 2em;
    background-color: #54aaf3;
    opacity: 0;
    animation: slidin 2s forwards;
    animation-delay: 1s;
}

.carousel-text-container {
    /*position: absolute;*/
/*    left: 10%;
    width: 80%;*/
    margin-top: .3em;
    font-size: 1.2em;
    opacity: 0;
    /*transition: opacity 0.5s ease-in-out;*/
    animation-fill-mode: forwards;
}

.carousel-text-caption {
    color: black;
    background-color: white;
    border-radius: 5px;
    padding: 0px 5px;
}

.carousel-footer-container {
    margin-top: .2em;
    font-size: 1.5em;
    opacity: 0;
    animation: bottomUp 1.5s forwards;
    animation-delay: 2s;
}

.carousel-footer-caption {
    color: white;
    background-color: darkgray;
    border-radius: 5px;
    padding: 0px 5px;
    
}

.carousel-animation-scale {
    animation: scaleUp 1.5s forwards;
}

.carousel-animation-bottomUp {
    animation: bottomUp 1.5s forwards;
}

.carousel-animation-fade {
    animation: fadeInAnimation 1.5s forwards;
}
.carousel-animation-rotate {
    animation: rotation 3s forwards;
}

@keyframes rotation {
    0% {
        transform: scale(0);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes bottomUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slidin {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.img-border {
    box-shadow: gray 5px 10px 7px 0px;
}

.carousel-img-container {
    /*max-height: 47vh;*/
}

/* bg img for web services */

.Web-Cost-Prices {
    color: red;
}

.webservices-bg {
    background-image: url("../static/image/WebServices/parallax-bg-2.jpg");
    background-position-x: 50%;
    background-position-y: 30%;

}

.bg-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.bg-overlay-light {
    background: rgba(255, 255, 255, 0.3);
}

.sms-bg {
    background-image: url("/static/image/SMS/slider-2-slide-2.jpg");
    background-position-x: 50%;
}

/* shop */
.shop-heading-bg {
    background-image: url("/static//image/Shop/parallax-bg-3.jpg");
    background-size: cover;
}

.add-item-container {
    display: flex;
    justify-content: space-between;
}

.heading-message-container {
    text-align: left;
    padding-bottom: 2em;
    padding-top: 1em;
}

.heading-message {
    color: white;
}


@media (min-width: 768px) {
  .product-list .root {
    column-count: 3;
    column-gap: 30px;
  }
}

/* Download Page */

.dw-icon-container {
    max-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dw-icon-size {
    font-size: 8em;
    padding: 50px;
}

.dw-text {
    text-align: center !important;
}

.dw-button {
    border-radius: 5px;
    border: 1px solid lightgray;
    padding: 5px 10px;
    box-shadow: 5px 3px 3px #6c757d;
    font-weight: 400;
}

.dw-button:hover {
    background-color: lightblue;
}

.dw-page-bg {
    background-color: #f1f1f1;
}

/* CreditMachine Page */

.buttons-container {
    display: flex;
}

.custom-btn1 {
    font-size: 1.2em;
    padding: 0.8em 1.2em;
    border-radius: 30px;
    border: 2px solid #6c757d;
    background-color: #6c757d;
    color: #fff;
    transition: .3s all;
    text-align: center;
}

.custom-btn2 {
    font-size: 1.2em;
    padding: 0.8em 1.2em;
    border-radius: 30px;
    border: 2px solid #dc3545;
    background-color: #dc3545;
    color: #fff;
    transition: .3s all;
    text-align: center;
}

.custom-btn1:hover {
    background-color: #fff;
    border: 2px solid #6c757d;
    color: #6c757d;
}

.custom-btn2:hover {
    background-color: #fff;
    border: 2px solid #dc3545;
    color: #dc3545;
}

.img-container-2 {
    display: flex;
    justify-content: space-around;
}

.img-container-3 {
    display: flex;
    justify-content: center;
}

.tabs-container {
    display: flex;
    justify-content: center;
}

.tab-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    min-width: fit-content;
    border-radius: 10px;
}

.tabcontents-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
}

.tabItem-Container {
    width: 70%;
}

.tab-item {
    flex-grow: 1;
}

/* Shop Printer-Scanner */

.PS-Heading-FS {
    font-size: 1.4em;
    color: #2e2c2c;
    font-weight: 520;
}

.price-container {
    display: flex;
}

.price-tag {
    font-size: 1.5em;
}

.deal-price-container {
    display: flex;
    justify-content: space-around;
}

.deal-price {
    padding: 1em 2em;
    border-radius: 30px;
    background-color: orange;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.deal-price-text {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.img-row-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f5f5f5;
}

.img-row {
    padding: .5em;
    transition: .5s ease-in-out;
}

.img-row-img {
    width: auto;
    height: auto;
    max-height: 12em;
}

.img-row:hover{
    background-color: #e2e2e2;
    /*transform: scale(2) translateY(-4em);*/
}

/* FreeWeb */
.myImg {
    max-height: 260px;
    max-width: 370px;
    width: auto;
    height: auto;
}

.img-link:hover {
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px lightgray;
    transition: .5s ease-in-out;
}

/* Template */
.template-img {
    cursor: pointer;
    transition: .5s ease-in-out;
}

.template-img:hover {
    box-shadow: inset gray 0px 0px 5px;
}

.template-name {
    background-color: #f1f1f1;
    text-decoration: none;
}

.template-name:hover {
    background-color: #83c6ff;
    color: white;
}

.category-text {
    padding: .3em;
    border-radius: 10px;
    transition: .5s ease-in-out;
    margin: .5em 0;
    text-decoration: none;
}

.category-text:hover {
    outline: 1px solid lightgray;
}

.prod-no-desc {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 2em;
}

/* DocListPage */
.tag-section-custom {
    border: 1px solid #e3e1e1;
    border-radius: 30px;
    margin-top: 2rem;
    padding: 2rem;
}

.tag-content-custom {
    background-color: #f3f3f3;
    padding: 0.3em 0.8em;
    border: 1px solid transparent;
    border-radius: 20px;
    color: #212121;
    line-height: 2.5;
    font-size: .8em;
}

.tag-content-custom:hover {
    box-sizing: border-box;
    color: #5b0fd5;
    border: 1px solid #5b0fd5;
    background-color: #fff;
    text-decoration: none;
}

/* SMS Refill Page */
.my-container {
    border-radius: 30px;
    border: 1px solid #e3e1e1;
    padding: 1rem 2rem;
}

.select-button {
    padding: .3em 1rem;
    background-color: #54aaf3;
    cursor: pointer;
    color: white;
    width: fit-content;
}

.select-button:hover {
    outline: 1px solid #54aaf3;
    background-color: white;
    color: #54aaf3;
}

.amounts button {
    min-width: 60px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 7px 10px;
}

.amounts button:hover{
    background-color: #54aaf3;
}

.amounts button.active {
    border: 1px solid black;
    background-color: #54aaf3;
}

.order-detail {
    list-style: none;
}

.refill-store-info {
    font-weight: 700;
    margin: .5em 0;
}

/* Camera */

.my_6_banner {
    /*background-color: #e9e9e9;*/
    background-image: linear-gradient(315deg, #5b0fd580 0%, #5b0fd5d1 74%);
}

.img-container {
    max-height: 220px;
    max-width: 400px;
}

.img-size {
    height: 260px;
    width: auto;
}