 
 


/*
=============Style for Production=============
*/
ul.menu-center  li.active a {
    color: #f7941d;
}

.grid-item{
	width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 10px;
    overflow: hidden;
}

.view {
	position: relative;
    float: left;
    height: 100%;
	width: 15.6%;
    padding-bottom: 15.6%;
    margin: 0.53%;
    overflow: hidden;
}
.cell, .mask {
	position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
}
.view  .cell{
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
	-ms-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
}

.view  .mask {
    position: absolute;
    text-align: center;
    overflow: hidden;
    height: 100%;
    width: 100%;
	background-color: rgba(255, 231, 179, 0.3);
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	cursor: pointer;
	cursor: hand;
}

.view:hover .cell  {
	-webkit-transform: scale(10);
	-moz-transform: scale(10);
	-o-transform: scale(10);
	-ms-transform: scale(10);
	transform: scale(10);
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
}

.view:hover .mask {
	-ms-filter: "progid: 	DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.letter  p{
	margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
	font-size: 25px;
	color: #686868;
	font-family: Regular;
}

.modal .grid-item-in-line {
    top: 35%;
    position: absolute;
    display: inline-block;
    height: 100%;
    width: 100%;
    border: none;
	padding: 0px;
}

.grid-item-in-line .forecast-cell {
	float: left;
    position: relative;
    width: 15.6%;
    padding-bottom: 15.6%;
    margin: 0.53%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    border: 2px solid gray;
    filter: grayscale(80%);
}


@media only screen and (min-width: 1024px){
    .body-content {
        height: 351px;
        margin-top: 64px;
    }
    .grid-item{
        width: 538px;
    }
}

@media only screen and (min-width: 1600px) {
     .body-content {
        height: 453px;
        margin-top: 82px;
    }   
    .grid-item{
        width: 680px;
    }

}

@media only screen and (min-width: 1920px){
    .body-content {
        height: 552px;
        margin-top: 100px; 
    }
    .grid-item{
        width: 828px;
    }
}

@media only screen and (min-width: 2560px){
    .body-content {
        margin-top: 139px;
        height: 765px;
    }
    .grid-item{
        width: 1147px;
    }
}

