/**
* modal.css
* Author: Pedro Laxe
* Version: 1.0.6
* License: GPLv2
**/
.modal {
	left: 50%;
	margin: -250px 0 0 -32%;
	opacity: 0;
	position: absolute;
	top: -50%;
	visibility: hidden;
	width: 65%;
	box-shadow: 0 3px 3px rgba(0,0,0,.25);
	box-sizing: border-box;
	transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
}

.modal:target {
	opacity: 1;
	top: 50%;
	visibility: visible;
}

.rmodal {
	left: 5%;
	margin: -300px 0 0 0;
	opacity: 0;
	position: absolute;
	top: -50%;
	visibility: hidden;
	width: 90%;
	box-shadow: 0 3px 3px rgba(0,0,0,.25);
	box-sizing: border-box;
	transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
}

.rmodal:target {
	opacity: 1;
	top: 50%;
	visibility: visible;
}

.rmodal-content {
	background: #f7f7f7;
	position: relative;
	z-index: 20;
	border-radius: 0;
	color: #333333;
}

.rmodal .overlay {
	background-color: #000;
	background: rgba(0,0,0,.8);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.marine {
    background-image: url("../images/bg-marine.jpg");
    background-repeat: no-repeat;
    background-position: right top;
}

.lazuli {
    background-image: url("../images/bg-lazuli.jpg");
    background-repeat: no-repeat;
    background-position: right top;
}

.galaxy {
    background-image: url("../images/bg-galaxy.jpg");
    background-repeat: no-repeat;
    background-position: right top;
}

.aura {
    background-image: url("../images/bg-aura.jpg");
    background-repeat: no-repeat;
    background-position: right top;
}

.onyx {
    background-image: url("../images/bg-onyx.jpg");
    background-repeat: no-repeat;
    background-position: right top;
}

.lightblue {
    background-image: url("../images/bg-lightblue.jpg");
    background-repeat: no-repeat;
    background-position: right top;
}

.indigo {
    background-image: url("../images/bg-indigo.jpg");
    background-repeat: no-repeat;
    background-position: right top;
}

.rmodal-content .marine,
.rmodal-content .lazuli,
.rmodal-content .galaxy,
.rmodal-content .aura,
.rmodal-content .onyx,
.rmodal-content .lightblue,
.rmodal-content .indigo, {
    background-position: center top;
}

.modal .header, .modal .footer {
	border-bottom: 1px solid #e7e7e7;
	border-radius: 0;
}
.modal .footer {
	border: none;
	border-top: 1px solid #e7e7e7;
	border-radius: 0;
}
.modal h2 {
	margin: 0;
	color: #333333;
}
.modal .btn {
	float: right;
}
.modal .copy, .modal .header, .modal .footer {
	padding: 5px;
	color: #333333;
}
.modal-content {
	background: #f7f7f7;
	position: relative;
	z-index: 20;
	border-radius: 0;
	color: #333333;
}
.modal .copy {
	background: #fff;
}
.modal .overlay {
	background-color: #000;
	background: rgba(0,0,0,.8);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}
.copy ul li a {
	color: #333333;
	text-decoration: none;
}
/* Responsive Options */
@media screen and (max-width: 1200px) {
	.desktop{
        display: none;
	}
    .responsivo{
        display: block;
	}
}
@media screen and (min-width: 1200px) {
	.desktop{
        display: block;
	}
    .responsivo{
        display: none;
	}
}

@media screen and (max-width: 1200px) {
	.modal{
        display: none;
	}
}
@media screen and (min-width: 1200px) {
	.modal{
	position: absolute;
	width: 1200px;
	left: 50%;
	top: 0px;
	margin: -400px auto 0 -600px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 3px 3px rgba(0,0,0,.25);
	box-sizing: border-box;
	transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	}
}
.modalcss-button {
    /* Structure */
    display: inline-block;
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Firefox: Get rid of the inner focus border */
.modalcss-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.modalcss-button {
    font-family: inherit;
    font-size: 100%;
    padding: 0.5em 1em;
    color: #444; /* rgba not supported (IE 8) */
    color: rgba(0, 0, 0, 0.80); /* rgba supported */
    border: 1px solid #999;  /*IE 6/7/8*/
    border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/
    background-color: #E6E6E6;
    text-decoration: none;
    border-radius: 2px;
}

.modalcss-button-hover,
.modalcss-button:hover,
.modalcss-button:focus {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
    background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
    background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}
.modalcss-button:focus {
    outline: 0;
}
.modalcss-button-active,
.modalcss-button:active {
    box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
    border-color: #000\9;
}
.modalcss-button[disabled],
.modalcss-button-disabled,
.modalcss-button-disabled:hover,
.modalcss-button-disabled:focus,
.modalcss-button-disabled:active {
    border: none;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    filter: alpha(opacity=40);
    -khtml-opacity: 0.40;
    -moz-opacity: 0.40;
    opacity: 0.40;
    cursor: not-allowed;
    box-shadow: none;
}

.modalcss-button-hidden {
    display: none;
}

/* Firefox: Get rid of the inner focus border */
.modalcss-button::-moz-focus-inner{
    padding: 0;
    border: 0;
}

.modalcss-button-primary,
.modalcss-button-selected,
a.modalcss-button-primary,
a.modalcss-button-selected {
    background-color: rgb(0, 120, 231);
    color: #fff;
}
.button-success,
        .button-error,
        .button-warning,
        .button-secondary {
            color: white;
            border-radius: 4px;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
        }

        .button-success {
            background: rgb(28, 184, 65); /* this is a green */
        }

        .button-error {
            background: rgb(202, 60, 60); /* this is a maroon */
        }

        .button-warning {
            background: rgb(223, 117, 20); /* this is an orange */
        }

        .button-secondary {
            background: rgb(66, 184, 221); /* this is a light blue */
        }
/* Responsive Video */
.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Close Button */
.box3 { 
	width: 25px;
	right: 0px;
	position: absolute;
	margin: 5px;
}
svg {
	display: block;
}
.close-x {
  stroke: black;
  fill: transparent;
  stroke-linecap: round;
  stroke-width: 5;
}

.title {
    padding: 20px 0 0 20px;
    color: #000;
    font-size: 99px;
}

.desc {
    padding: 9px 0 0 137px;
    font-size: 42px;
    color: #000;
}

.textil {
    margin: 40px 0 0 50px;
}

.textil img {
    width: 100%;
    height: 330px;
}

.colTextil {
    width: 120px;
    height: 340px;
    float: left;
    margin-left: 15px;
}

.colTextil:first-child { 
    margin-left: 1px;
}

.linha {
    font-size: 24px;
}

.theRock {
    margin-top: -100px;
}

.pReplay {
    padding: 130px 0 0 0;
    font-size: 24px;
    text-align: right;
}

.pCK {
    padding: 130px 0 0 35px;
    font-size: 24px;
}

.pMO {
    padding: 130px 0 0 55px;
    font-size: 24px;
}

.newClose {
    text-align: right;
}

.btnClose {
    position: absolute;
    top: 18px;
    right: 447px;
    width: 50px;
    height: 50px;
    line-height: 44px;
    display: inline-block;
    border-radius:25px;
    background-color: white;
    text-align: center;
    border: 5px solid #000;
    box-sizing: border-box;
    font-size: 30px;
    color: #000;
}

.btnClose:hover {
    background-color: #203c53;
    border: 5px solid #203c53;
    color: #fff;
}

.mfooter {
/*    height: 490px;*/
}

.mfooter img {
    width: 100%;
    display: block;
}

.rbtnClose {
    position: absolute;
    left: 50%;
    margin-left: -25px;
    bottom: 0;
    margin-bottom: -25px;
    width: 50px;
    height: 50px;
    line-height: 44px;
    display: inline-block;
    border-radius:25px;
    background-color: white;
    text-align: center;
    border: 5px solid #000;
    box-sizing: border-box;
    font-size: 30px;
    color: #000;
}

.rbtnClose:hover {
    background-color: #203c53;
    border: 5px solid #203c53;
    color: #fff;
}

.rtextil {
    margin: 0;
}

.rcolTextil {
    width: 15.33%;
    float: left;
    margin-left: 1%;
}

.rcolTextil img {
    width: 100%;
}

.sLider img {
    display: block;
}
