
/* Menu */
@media (min-width: 800px) and (max-width: 1300px) {
.translate-middle-special {
  transform: translate(-50%,-50%) !important;
  white-space: nowrap;
}
}


@media (min-width: 800px), (max-width: 1300px) {
.translate-middle-special {
  transform: translate(-70%,-50%) !important;
  white-space: nowrap;
}
}

/*

@media (min-width: 800px) and (max-width: 1300px) {
.translate-middle-special {
  transform: translate(-50%,-50%) !important;
}
}
*/
	
/* Modal */

#cmcc_body_cont {position:fixed;top:0px;bottom:0px;left:0px;right:0px;background-color:rgba(0,0,0,0.85);z-index:1000000;} 
#cmcc_body_modal {position:fixed;bottom:0px;left:0px;right:0px;background-color:#fff;padding:20px;} 
/*
.mt-5 {margin-top:20px;}
.mb-2 {margin-bottom:10px;}
.py-4 {padding-bottom:16px;}*/

/* back-to-top */

#back-to-top {
    position: fixed;
    bottom: 18px;
    right: 26px;
    z-index: 9999;	
    width: 48px;
    height: 48px;
    text-align: center;
	/*
    line-height: 30px;
	*/
    /* background: #1bbce8; */
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.5s ease-out;
    opacity: 0;
}
#back-to-top:hover {
    /* background:#000; */
}

#back-to-top.show {
    opacity: 1!important;
}


/* Main CSS */

.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	grid-auto-rows: 100px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

/* login */

.login {
  min-height: 100vh;
}

.bg-image {
  background-image: url('img/bg-002.jpg');
  background-size: cover;
  background-position: center;
}

.login-heading {
  font-weight: 300;
}

.btn-login {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  padding: 0.75rem 1rem;
}