/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 767px) {
.leftmenu {
	 position: fixed;
     left: -330px;
    width: 200px;
    z-index: 1;
    transition: 0.5s;
}
.menu-item ul li a {
	width: 150px;
	padding: 10px 4px;
	font-size: 14px;
}
.rightcontent {
	    width: 100%;
}
.sign-btn {
    padding: 7px 35px;
}
.mobile-header {
	background-color: #231f20;
    width: 100%;
    padding: 10px;
}
.tooglemenu {
	text-align: right;
}
.tooglemenu i {

    color: #ffffff;
    font-size: 23px;

}
.mobile-header {
	display: block;
}
.openmenu {
	left: 0;
}
.rightcontent {
    padding: 15px;
    margin-left: 0;
}
.codeinput {
	width: 80%;
}

.mt-mob-2, .my-mob-2 {
    margin-top: .5rem!important;
}


.reset.codeinput {
    width: 80%;
    margin: 0 auto;
}

.desk-main {
    padding: 40px 0px;
}
}


@media only screen and (min-device-width :320px) and (max-device-width : 767px) and (orientation : landscape) {
    .menu-item {
        padding-top: 2rem;
        height: calc(100vh - 190px);
        overflow: auto;
    }
    }

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.leftmenu {
position: fixed;
    left: 0;
    width: 20%;
}
.menu-item ul li a {
    width: 130px;
    padding: 10px 4px;
    font-size: 12px;
}
.rightcontent {
	      width: 80%;
}

.sign-btn {
    padding: 7px 35px;
}
.mobile-header {
	background-color: #231f20;
    width: 100%;
    padding: 10px;
}
.tooglemenu {
	text-align: right;
}
.tooglemenu i {

    color: #ffffff;
    font-size: 23px;

}

.openmenu {
	left: 0;
}
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
.leftmenu {
	 position: absolute;
     left: -460px;
     width: 200px;
    z-index: 1;
    transition: 0.5s;
}
.leftmenu.openmenu {
    left: 0;
}
.mobile-header {
    display: block;
}
.rightcontent {
    padding: 35px;
    margin-left: 0;
    width: 100%;
}
.menu-item {
    padding-top: 2rem;
    height: calc(100vh - 190px);
    overflow: auto;
}
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
/* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
/* Styles */
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
/* Styles */
}
/* Desktops and laptops ----------- */
@media only screen  and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen  and (min-width : 1824px) {
/* Styles */
}


/** Loader Css start**/
.overlay {  
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/** Loader Css end**/