﻿.adminloginmodal input[type=text], .adminloginmodal input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
.adminloginmodal button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

.adminloginmodal button:hover {
        opacity: 0.8;
    }

/* Extra styles for the cancel button */
.adminloginmodal .cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

/* Center the image and position the close button */
.adminloginmodal .imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.adminloginmodal img.avatar {
    width: 40%;
    border-radius: 50%;
}

.adminloginmodal .adminlogin {
    padding: 16px;
}

.adminloginmodal span.psw {
    float: right;
    padding-top: 16px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-backdrop {
    z-index: -1;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.adminloginmodal .close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

    .adminloginmodal .close:hover,
    .adminloginmodal .close:focus {
        color: red;
        cursor: pointer;
    }

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    .adminloginmodal span.psw {
        display: block;
        float: none;
    }

    .adminloginmodal .cancelbtn {
        width: 100%;
    }
}

.writeupfont p {
    font-size:15px;
}

.writeupfont label {
    font-size: 15px;
}

.writeupfont p span {
    font-size: 24px;
}

.validationMessage {
    position: relative;
    left: 10px;
    display: none;
    color: red;
}


/**********For side login**********/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #FFFFFF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #004a43;
        display: block;
        transition: 0.3s;
    }

        .sidenav a:hover {
            color: #004a43;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }



@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);    
    
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }



.button_login {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius:3px;
}
/*********************************/

/**************Loader*************/
.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 51px;
        height: 51px;
        margin: 6px;
        border: 6px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #bac0be transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/********************************/

/****************UX change for tables by Sourav Bagchi 07_05_2019********/
.illusionztable1 {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

    .illusionztable1 td, .illusionztable1 th {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .illusionztable1 tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .illusionztable1 tr:hover {
        background-color: #ddd;
    }

    .illusionztable1 thead {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: #4CAF50;
        color: white;
    }

    .illusionztable1 th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: #4CAF50;
        color: white;
    }

    .admin-action {
        cursor: pointer;
    }

/************************************************************************/

.notification-badge{
    background:red;
    border-radius:50%;
    color:white;
    margin-left:10px;
}

/************************************************************************/

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 25px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }
/**************************************************************************/

/************************FOR TOP SIDE CARD SECTION*************************/
.sideInfoSection {
    top: 150px;
    position: fixed;
    right: -10px;
    width: 50px;
    height: 144px;
    z-index: 500;
    background: #077972;
    cursor: pointer;
    border-radius: 8px;
    padding-top: 20px;
}

.vertical-rl {
    font-family: Lucida Console, Monospace;
    font-size: 20px;
    writing-mode: vertical-rl;
    color: #ffffff;
    display: inline-block;
}

.card2 {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
/*************************************************************************/

.aboutusmaindiv{
    padding-top:50px;
}

.heading-h4 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 26px;
    color: #1a4457;
}

.heading-location {
    font-family: Verdana, Geneva, sans-serif;
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 20px;
    color: #333840;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.carpet-area-div {
    text-align: center;
    width: 100%;
    padding: 20px;
}

    .carpet-area-div table {
        width: 100%;
    }

/************************TUMIO HAND ANIMATION*******************/
.slideanim {
    visibility: hidden;
}
/*.slideanim {
    visibility: visible;
}*/


.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    visibility: visible;
}

/**************************************************************/

/*************************************Footer css **********************************************/
.selector-card-label {
    box-shadow: 0 0px 16px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    border-radius: 0px;
    margin-top: 20px;
    z-index:100;
    /*background:whitesmoke;*/
    background:#ffffff;
}

.footer-top-margin {
    margin-top: 35px;
}

.footer-position-bottom {
    bottom: -25px !important;
}

.footer-position {
    position: fixed;
    bottom: 0px;
}

.footer-text {
    font-size: 14px;
    line-height: 20px;
    color: grey;
    margin-right: 10px;
}

    .footer-text:hover {
        text-decoration: none;
    }

.footer-text-active {
    color: lightseagreen;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

.tabselect:hover {
    cursor: pointer;
    text-decoration: none;
}

/**********************************************************************************************/

/*************************************FOOTER CARD**********************************************/
.footercard {
    font-size: 15px;
    line-height: 20px;
    color: black;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

/*********************************************************************************************/

.OfficialHeader {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}


.background-white{
    background:#ffffff;
}

/**********************************navbar color scheme*****************************************/
.navbar-item-color {
    color: darkslategrey !important;
}

.navbar{
    padding:20px;
}

.nav-link {
    text-transform: capitalize;
    margin-right: 15px;
    font-weight: 500 !important;
    font-size: 13px !important;
}
.login-text {
    text-transform: capitalize;
    margin-right: 20px;
    font-weight: 500 !important;
    font-size: 13px !important;
}
.bottom-nav-address
{
    text-transform: capitalize;
    font-size: 11px !important;
    margin-bottom: 2px;
    font-weight: 500 !important;
}

.right {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    font-weight: 500 !important;
    font-size: 15px !important;
}

.i-margin-nav{
    margin-right:15px!important ;
}
/*.navbar-nav {
    margin-left: 100px;
}*/
/*********************************************************************************************/