@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

:root{
    --blue:#2b1673;
}

*{
    font-family: 'Open Sans', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .2s cubic-bezier(.37,1.14,.26,1.24);
}

*::selection{
    background:#e95e4f;
    color:#fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

.btn{
    height: 4rem;
    width: 14rem;
    color:#2b1673;
    font-size: 2rem;
    cursor: pointer;
    border:none;
    outline: none;
    font-weight: bold;
}

.btn:hover{
    background-color: #2b1673;
}

.heading{
    padding-top: 7rem;
    width: 95%;
    border-bottom: .2rem solid rgba(0,0,0,.3);
    margin:0 auto;
}

.heading span{
    font-size: 2rem;
    padding:1rem 6rem;
    color:#fff;
    background:var(--blue);
    border-top-right-radius: 3rem;
    display: inline-block;
}

header .header-1, header .header-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem;
    width: 100%;
    z-index: 1000;
}

header .header-1 .logo{
    font-size: 2rem;
    color:#666;
}

header .header-1 .logo i{
    color:var(--blue);
}

header .header-1 .form-container form{
    display: flex;
}

header .header-1 .form-container form #search{
    height: 4rem;
    width: 50rem;
    outline: none;
    border:.2rem solid #666;
    font-size: 1.5rem;
    padding:0 1rem;
}

header .header-1 .form-container form #search:focus{
    border-color: var(--blue);;
}

header .header-1 .form-container form label{
    height: 4rem;
    width: 5rem;
    text-align: center;
    line-height: 4rem;
    font-size: 2rem;
    cursor: pointer;
    background: var(--blue);
    color:#fff;
}

header .header-1 .form-container form label:hover{
    color:lightgray;
}

header .header-2{
    background:var(--blue);
}

header .header-2 .navbar ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-2 .navbar ul li{
    margin:0 1rem;
}

header .header-2 .navbar ul li a{
    font-size: 2rem;
    color:#fff;
}

header .header-2 .navbar ul li a.active,
header .header-2 .navbar ul li a:hover{
    color:lightgray;
}

header .header-2 .icons a{
    color: #fff;
    font-size: 2rem;
    padding: 0 1rem;
}

header .header-2 .icons a:hover{
    color:lightgray;
}

header .header-2 #menu{
    font-size: 3rem;
    color:#fff;
    cursor: pointer;
    display: none;
}

header .header-2.header-active{
    position: fixed;
    top:0; left: 0;
    box-shadow: 0 .1rem .3rem rgba(0,0,0,.3);
}

.home .home-slider .item{
    position: relative;
}

.home .home-slider .item img{
    height: 100vh;
    object-fit: cover;
    width: 100%;
}

.home .home-slider .item .content{
    position: absolute;
    top:50%; left: 5%;
    transform: translateY(-50%);
}

.home .home-slider .item .content h3{
    color:#fff;
    text-shadow: 0 .3rem .5rem #000;
    font-size: 5rem;
    text-transform: uppercase;
}

.home .home-slider .item .content p{
    color:#fff;
    font-size: 2.5rem;
    padding:2rem 0;
    width: 50rem;
}

.home .owl-carousel .owl-prev, .home .owl-carousel .owl-next{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    outline: none;
}

.home .owl-carousel .owl-prev{
    left: 1.3rem;;
}

.home .owl-carousel .owl-next{
    right:1.3rem;;
}

.home .owl-carousel .owl-prev span, .home .owl-carousel .owl-next span{
    color:#fff;
    font-size: 7rem;
}

.arrival{
    min-height: 100vh;
}

.arrival .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
    width: 85%;
    margin:0 auto;
}

.arrival .box-container .box{
    flex:1 1 30rem;
    border:.1rem solid rgba(0,0,0,.3);
    overflow: hidden;
    position: relative;
    margin:1rem 2rem;
}

.arrival .box-container .box .image{
    height: 20rem;
    padding:2rem;
    text-align: center;
    background:#f0f0f0;
}

.arrival .box-container .box .image img{
    height: 100%;
    object-fit: cover;
}

.arrival .box-container .box .info h3{
    padding:1rem;
    font-size: 2rem;
    color:var(--blue);
}

.arrival .box-container .box .info .subInfo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1rem;
    border-top: .1rem solid rgba(0,0,0,.3);
}

.arrival .box-container .box .info .subInfo .price{
    color:#ff3300;
    font-size: 2rem;
}

.arrival .box-container .box .info .subInfo .price span{
    color:#666;
    font-size: 1.5rem;
    text-decoration: line-through;
}

.arrival .box-container .box .info .subInfo .stars i{
    color:orange;
    font-size: 1.5rem;
}

.arrival .box-container .box .overlay{
    position: absolute;
    top:0; left: 0;
    height:20rem;
    width: 100%;
    background:rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
}

.arrival .box-container .box:hover .overlay{
    transform: scale(1);
}

.arrival .box-container .box .overlay a{
    font-size: 2rem;
    padding:1.5rem 2rem;
    background:#fff;
    color:#666;
    margin:1rem;
    transform: translateY(-15rem);
    transition-delay: calc(.1s * var(--i));
}

.arrival .box-container .box:hover .overlay a{
    transform: translateY(0rem);
}

.arrival .box-container .box .overlay a:hover{
    color:var(--blue);
}

.feature{
    min-height: 100vh;
    background:linear-gradient(165deg, #fff 50%, var(--blue) 50.1%);
    padding-bottom: 2rem;
}

.feature .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
    margin:3rem auto;
    width: 95%;
    background:#fff;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
    border-radius: 1rem;
    flex-direction: row-reverse;
}

.prices{
    position: absolute;
    top: 0px;
    background-color: #e95e4f;
    color: white;
    padding: 5px;
}
.delete{
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #e95e4f;
    color: white;
    padding: 10px;
    border: none;
}
.count{
    width:200px;
    padding: 2px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.Buy{
    background-color: #e95e4f;
    color: white;
    padding: 10px 40px;
    border: none;
}
.nav-item {
    cursor: pointer;
}
.modal .modal-content {
    box-shadow: none;
    border-radius: 0;
    border: 0;
    position: relative;
  }
.modal .close {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: #333;
    opacity: 1;
    padding: 15px;
    color: #FFF;
    font-size: 28px;
    line-height: 45px;
    outline: none;
    z-index: 10;
    width:60px;
  }
  .modal .close span {
    outline: none;
  }
  .modal .modal-body {
    padding: 40px 60px;
  }
  .modal .member-info {
    padding: 0;
  }
  .modal input {
    height: 50px;
  }
  .modal input,
  .modal textarea {
    padding: 10px 20px;
    border-radius: 0;
    font-size: 18px;
  }
  .modal input:focus,
  .modal textarea:focus {
    border-color: #e74c3c;
    box-shadow: none;
  }
  .modal textarea {
    resize: none;
  }
  .modal button {
    width: 100%;
    border-radius: 0;
    padding: 10px 20px;
    background-color: #e95e4f;
    color: white;
    border: none;
    font-size:30px
  }
  .form-control::-webkit-input-placeholder {
    color: #DBDBDB;
    font-style: italic;
  }
  
.feature{
    min-height: 100vh;
    background:linear-gradient(165deg, #fff 50%, var(--blue) 50.1%);
    padding-bottom: 2rem;
}

.feature .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
    margin:3rem auto;
    width: 95%;
    background:#fff;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
    border-radius: 1rem;
}

.feature .row .image-container{
    align-items: center;
    margin-top: 10px;
    position: relative;
}

.big-image
{
    position: relative;
}

  .form-control::-webkit-input-placeholder {
    color: #DBDBDB;
    font-style: italic;
  }
.feature .row .image-container .big-image img{
    height: 30rem;
    width:100%;
    margin:2rem 0;
    filter: drop-shadow(0 .1rem .5rem #000);

}

.feature .row .image-container .small-image{
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

.feature .row .image-container .small-image img{
    height:6rem;
    padding: 1rem;
    margin:1rem;
    border:.1rem solid #666;
    cursor: pointer;
}

.feature .row .image-container .small-image img.image-active,
.feature .row .image-container .small-image img:hover{
    border:.2rem solid var(--blue);
}

.feature .row .content{
    padding-left: 6rem;
}

.feature .row .content h3{
    font-size: 4rem;
    color:var(--blue);
}

.feature .row .content .stars i{
    font-size: 2rem;
    color:orange;
    padding: 1rem 0;
}

.feature .row .content .stars span{
    font-size: 2rem;
    color:#666;
}

.feature .row .content p{
    color:#333;
    width: 40rem;
    font-size: 2rem;
    padding: 2rem 0;
}

.feature .row .content .price{
    color:#ff3300;
    font-size: 2rem;
}

.feature .row .content .price span{
    color:#666;
    text-decoration: line-through;
    font-size: 1.5rem;
}

.feature .row .content .btn{
    margin-left: 2rem;
}
.features
{
    list-style-type: none;
    padding: 20px;
}
.features li
{
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: gray;
}
.gallery{
    min-height: 100vh;
}
.gallery .fas{
    color: black;
}

    .gallery .controls {
        list-style: none;
        background-color: white;
        padding: 30px 40px;
        top: 0;
        width: 102%;
        z-index: 100;
    }

.gallery .controls .btn{
    margin:2rem;
    line-height: 3rem;
    text-align: center;
    box-shadow: .2rem .3rem .5rem rgba(0,0,0,.9);
    font-size: 14px;
    width:100%;
}
.controls li:hover{
color: white;
}
.buy
{
    padding: 6px 30px;
    font-size: 16px;
    color: black;
    background-color: transparent;
    border: 1px solid lightgray;
    cursor: pointer;
    font-weight:bold; 
}
.buy:hover
{
    background-color: #e95e4f;
    border: none;
    color: white;
    letter-spacing: 2px;
}


.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .box{
    display: flex;
    align-items: center;
    justify-content: center;
    margin:2rem;
    border:.1rem solid rgba(0,0,0,.3);
    flex:1 1 30rem;
}

.gallery .image-container .box .image{
    height:14rem;
    width: 20rem;
    text-align: center;
    padding:1rem;
    background: #f0f0f0;
}

.gallery .image-container .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery .image-container .box:hover .image{
    background:#ccc;
}

.gallery .image-container .box .info{
    width: 100%;
}

.gallery .image-container .box .info h3{
    font-size: 2rem;
    color:var(--blue);
    padding:1rem;
}

.gallery .image-container .box .info .subInfo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: .1rem solid rgba(0,0,0,.3);
    padding:1rem;
}

.gallery .image-container .box .info .subInfo .price{
    color:#ff3300;
    font-size: 2rem;
}

.gallery .image-container .box .info .subInfo .stars i{
    color:lightgray;
    font-size: 1.5rem;
}

.deal .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.deal .box-container .box{
    flex:1 1 40rem;
    height: 25rem;
    margin:2rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.deal .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.deal .box-container .box .aboutcontent{
    font-size: 14px;
    padding: 30px;
}

.deal .box-container .box .content h3{
    font-size: 3.5rem;
    color:#fff;
    text-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.deal .box-container .box .content p{
    font-size: 2rem;
    color:#fff;
}

.deal .box-container .box .content .btn{
    margin:1.4rem 0;
}

.deal .icons-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-wrap: wrap;
}

.deal .icons-container .icons{
    flex:1 1 25rem;
    padding:1rem;
    margin:1rem;
    text-align: center;
    border:.2rem solid var(--blue);
}

.deal .icons-container .icons i{
    color:var(--blue);
    font-size: 4rem;
    padding:1rem 0;
}

.deal .icons-container .icons h3{
    color:#333;
    font-size: 2rem;
}

.deal .icons-container .icons p{
    color:#666;
    font-size: 1.3rem;
    padding:1rem 0;
}

.newsletter{
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding:4rem 1rem;
    text-align: center;
}

.newsletter h1{
    font-size: 4rem;
    margin-top:70px;
}

.newsletter p{
    margin-bottom: 30px;
    font-size: 2rem;
    padding:1rem 0;
}

.newsletter form{
  
    margin:auto;
    padding:20px 1rem;
    align-items: center;
    justify-content: space-between;
    border-radius: 5rem;
    background:linear-gradient(var(--blue),var(--blue)), url(../images/deal2.jpg) no-repeat;

}
::placeholder{
    color: white;
}

.newsletter form input , textarea{
    height: 100%;
    width: 50%;
    padding:0 1rem;
    outline: none;
    border:none;
    background:none;
    font-size: 2rem;
    color:#fff;
    margin: 20px;
    padding: 7px;
    text-align: center;
    border-bottom: 1px solid whitesmoke;
}
.newsletter form .btn{
    color:white;
    background: transparent;
    border: 1px solid whitesmoke;

}

.newsletter form .btn:hover{
    color:#e95e4f;
    background-color: white;
}


.newsletter form input{
    border-radius: 5rem;
}

.footer {
    background-color: #e95e4f;
    color: white;
    margin-top: 20px;
}

    .footer h3 {
        font-weight: bold;
        font-size: 25px;
        text-align: center;
    }

    .footer p {
        text-align: left;
    }

        .footer p i {
            padding: 15px 20px;
        }

    .footer .linkat {
        text-align: center;
    }

    .footer li {
        margin: 30px 10px;
        display: inline-block;
    }

    .footer .linkat a {
        color: black;
    }

    .footer .linkat i {
        font-size: 35px;
    }
    .footer .footerAbout {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        line-height: 30px;
    }

.fa-whatsapp-square {
    color: #25D366;
}

.fa-twitter-square {
    color: #1DA1F2;
}

.fa-facebook-square {
    color: #4267B2;
}






/* media queries  */

@media (max-width:768px){

    html{
        font-size: 55%;
    }
    
    header .header-1 .form-container form #search{
        width: 100%;
    }

    header .header-2 #menu{
        display: block;
    }

    header .header-2 .navbar{
        position: fixed;
        top: -200rem; left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 100vh rgba(0,0,0,.3);
        z-index: 10000;
        opacity: 0;
    }

    header .header-2 .navbar ul{
        flex-flow: column;
        background: linear-gradient(var(--blue), blueviolet);
        border:.2rem solid #fff;
        box-shadow: 0 .3rem .5rem #000;
        padding:4rem 0;
        width: 27rem;
    }

    header .header-2 .navbar ul li{
        width: 100%;
        margin:1rem 0;
        text-align: center;
    }

    header .header-2 .navbar ul li a{
        font-size: 2.5rem;
        display: block;
    }

    .fa-times{
        transform: rotate(180deg);
    }

    header .header-2 .nav-toggle{
        top:50%;
        opacity: 1;
    }

    .arrival .box-container{
        width: auto;
    }

}

@media (max-width:600px){

    html{
        font-size: 50%;
    }

    .home .home-slider .item .content h3{
        font-size: 3rem;
    }

    .home .home-slider .item .content p{
        font-size: 2rem;
        width: auto;
    }

    .feature .row .image-container{
        flex-flow: column wrap;
    }

    .feature .row .image-container .small-image{
        flex-flow: row wrap;
        padding-bottom: 2rem;
    }

    .feature .row .content{
        padding:2rem;
        border-top: .1rem solid rgba(0,0,0,.3);
    }

    .feature .row .content p{
        width: auto;
    }

    .feature .row .content .btn{
        margin: 2rem 0;
    }
    .qrcod {
        margin-top: 50px;
    }

    .barcode {
        margin-left: -60px;
    }

    .fa-print {
        margin-top: 10px;
    }
}


@media (max-width:400px){

    html{
        font-size: 45%;
    }

    header .header-1{
        flex-flow: column;
        padding:1rem;
    }

    header .header-1 .logo{
        padding-bottom: 1.5rem;
    }
   
}
.top-animate {
    background: #fff !important;
    top: 13px !important;
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
  }
  .mid-animate {
    opacity: 0;
  }
  .bottom-animate {
    background: #fff !important;
    top: 13px !important;
    -webkit-transform: rotate(-225deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-225deg);
  }
  .top-menu,
  .mid-menu,
  .bottom-menu {
    width: 28px;
    height: 4px;
    border-radius: 10px;
    background-color: #fff;
  }
  .top-menu {
    top: 5px;
  }
  .mid-menu {
    top: 13px;
  }
  .bottom-menu {
    top: 21px;
  }
  .menui {
    background: #FFF;
    transition: 0.2s ease;
    margin-top: 10px;
    position: absolute;
  }
  .menu-trigger {
    z-index: 999;
    position: fixed;
    display: block;
    padding: 9px;
    height: 32px;
    width: 32px;
    margin: 0px;
    top: 45px;
    right: 115px;
  }
.mobilenav {
    /*    top: 47px !important;*/
    font-family: inherit;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(44, 23, 115, 2.9);
    text-transform: uppercase;
  }
  .mobilenav li a{
   color: white;
  }
  .mobilenav li {
    list-style-type: none;
    text-align: center;
    padding: 10px;
    font-size: 220%;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    width: 100%;
  }
  .mobilenav li:last-child span {
    border-bottom: none;
  }
  .mobilenav li:hover {
    cursor: pointer;
  }
  .nav-label {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    display: block;
    width: 350px;
    margin: 0 auto;
  }
  .mobilenav li:first-child {
    margin-top: 60px;
  }
  .card{
  
   color:white;
   margin-top: 10px;
   margin-right: 20px;
   position: relative;
  }
  .card i{
    font-size: 30px;
  }
  .card p{
    position: absolute;
    font-size: 14px;
    left: 35px;
    top: -10px;
    font-weight: bold;
  }

  .sidebar-nav {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top:30px;
  }
  .sidebar-nav li {
    padding: 0;
    /*Sidebar Sub Navigation*/
  }
  .sidebar-nav li a {
    border-bottom: 1px solid #d8d8d8;
    display: block;
    padding: 10px 20px;
    outline: none;
    color: #2b1673;
    font-size: 16px;
    font-weight: bold;
  }
  .sidebar-nav li ul li a {
    border-bottom: 1px solid #d8d8d8;
    display: block;
    padding: 10px 20px;
    outline: none;
  }
  .sidebar-nav li ul li a:hover {
    border-bottom: 1px solid #d8d8d8;
    display: block;
    padding: 10px 20px;
    outline: none;
    color: white;
    background: #2b1673;
  
  }
  .sidebar-nav li a:hover {
    text-decoration: none;
  }
  .sidebar-nav li ul {
    background: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    
  }

  .sidebar-nav .list-group-item .list-group-item ul a{
    background-color:  #2b1673;
    color: white;
    padding: 5px 5px 5px 40px;
  }
  .sidebar-nav li ul a {
    background: #fff;
    color: #555555;
    font-size: 12px;
    border-bottom: solid 1px #d8d8d8;
    padding: 5px 23px;
  }
  .sidebar-nav ul li:hover a,
  .sidebar-nav ul li.active a {
    color: #2b1673;
  }
  .sidebar-nav > li:last-child a {
    border: none;
  }
  /*Sidebar Badges*/
  .list-group-item li > .badge {
    float: right;
  }
  .sidebar-nav span.badge {
    margin-top: 8px;
    margin-right: 10px;
  }
  .sidebar-nav .list-toggle > span.badge {
    margin-right: 25px;
  }
  .sidebar-nav ul li span.badge {
    margin-top: 0px;
    font-size: 10px;
    padding: 3px 5px;
    margin-right: 20px;
    border-radius: 0 0 5px 5px;
    background: #42969e;
  }
  /*Sidebar List Toggle*/
  .list-toggle:after {
    top: 10px;
    right: 20px;
    color: #777;
    font-size: 14px;
    content: "\27a4";
    position: absolute;
    font-weight: normal;
    display: inline-block;
    font-family: FontAwesome;
  }
  .list-toggle.active:after {
    color: #fff;
    content: "\f107";
  }
  /* Make Font Awesome icons fixed width */
  .sidebar-nav li [class^="fa"],
  .sidebar-nav li [class*=" fa"] {
    width: 1.25em;
    left: -2px;
    margin-right: 2px;
    text-align: center;
    position: relative;
    display: inline-block;
  }
  .sidebar-nav li [class^="fa"].fa-lg,
  .sidebar-nav li [class*=" fa"].fa-lg {
    /* increased font size for fa-lg */
    width: 1.5625em;
  }
  #collapse-typograph
  {
      text-align: center;
  }
  .prod a{
      text-align: center;
  }
  .carouselContainer{
      height: 400px !important;
  }

.slideshow-container {
    max-width: 100%;
    height: 400px;
    position: relative;
    margin: auto;
    margin-top:-22px;
}

    .slideshow-container img {
        height: 400px;
    }

/* Hide the images by default */

.mySlides {
    display: none;
}

/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active,
    .dot:hover {
        background-color: #717171;
    }

/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    animation-name: fade;
    animation-duration: 2s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.featur {
    background-color: lightgray;
    color: #2b1673;
    width: 100%;
    padding: 10px 20px;
}

    .featur:hover {
        width: 100%;
    }

.feature h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
}

.features .col-lg-6 {
    text-align: center;
}

.features .code img {
    height: 60px;
    width: 100%;
}
/*.features img {
        width: 200px;
    }*/
.code {
    position: relative;
}

.barcode {
    position: absolute;
    top: 60px;
    left: 25px;
    letter-spacing: 11.5px;
}

.informations {
    padding: 10px 60px;
    text-align: center;
}

    .informations .col-lg-4 {
        text-align: center;
    }

    .informations b {
        padding: 0px 10px;
    }

.print {
    text-align: right;
    padding: 10px 40px;
    margin-top: -65px;
}

    .print button {
        background-color: #2b1673;
        color: white;
        padding: 8px;
        font-size: 20px;
        border-radius: 10px;
    }

.btby:hover{
    color:white;
}
.copyRight {
    text-align: center;
    font-size: 18px;
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 10px;
}
