/* large Desktops and laptops ----------- */
@media only screen and (min-width: 1225px) and (max-width: 1800px){
.container{
		max-width:1170px
	}
}







/* Desktops and laptops  */
@media only screen and (min-width: 992px) and (max-width: 1224px){
	.container{
		max-width:960px;
	}
}








/* TABLETS (portrait and landscape) */
@media only screen and (min-width: 768px) and (max-width: 991px){
	.container{
		max-width:720px
	}
}








/* TABLETS - SMARTPHONES LANDSCAPE (portrait and landscape)  */
@media only screen and (min-width: 481px) and (max-width: 767px){
	.container{
		max-width:640px;
	}
}








/* Smartphones (portrait and landscape)  */
@media only screen and (min-width: 320px) and (max-width: 480px){
	.container{
        max-width:360px;
    }
    .flex-wrap{
        flex-wrap: wrap;
    }
    
    
    
    .leftRight {
        padding: 20px;
        align-items: flex-start;
    }
    .leftSide .menu li a span.menuName {
    display: none;
    }
    .leftSide .menu li a span.icons {
    margin-right: 10px;
    font-size: 18px;
    color: #18bfbd;
}
.leftSide .menu li a {
    color: var(--info-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rightSide {
    width: 80%;
    padding: 0px 0px 0px 20px;
    background: #fff;
    overflow-x:scroll;
}
.rightSide p {
    font-size: 16px;
}
.rightSide .name {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.name input[type="text"],
.note textarea, 
.name input[type="password"] {
    width: 100%;
}
.email input[type="text"], 
.email input[type="tel"] {
    width: 100%;
    
}



.rightSide .bilship {
    display: flex;
    flex-direction: column;
}
.rightSide .bilship .billing {
     margin-right: 0px; 
}

.rightSide .table tbody td a{
    display: block;
    margin-bottom: 5px;
}



.leftSide .menu li {
    padding: 0px 0px 0px 0px;
    transition: .5s;
    cursor: pointer;
    font-size: 20px;
    position: relative;
    border-bottom: var(--border);
}









}

/*	Retina media query.
	Overrides styles for devices with a 
	device-pixel-ratio of 2+, such as iPhone 4.
-----------------------------------------------    */

@media 
	only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (min-device-pixel-ratio: 2) {
		
}