@import url(../fonts/Gotham/stylesheet.css);
@import url(../fonts/BebasNeue/stylesheet.css);

html, body {
	margin: 0px;
	border: 0px;
	padding: 0;

	font-size: 15px;

	color: #000000;
	
	-webkit-font-smoothing: antialiased;
	
/* 	text-align: center; */
}

*:focus {outline:0;}

a, a:link, a:visited, a:hover, a:active {
	text-decoration: none;
	color: inherit;
}

input {
	border-radius: 0px;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	border-radius: 0px;
	
	background: url(../img/icon-dropdown@2x.png) no-repeat 97% 50%;
	background-size: 10px;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
}

input[type=checkbox] {
	width: 20px !important;
	cursor: pointer;
}
input[type=checkbox]:checked {
	background-color: #D9000D;
}

.header {
	
}

.header-container {
	position: relative;
	top: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 99;
}

.header-container.fixed {
	position: fixed;
	border-bottom: 1px solid #efefef;
	
	-webkit-animation-name: headershowanim; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: .5s; /* Safari 4.0 - 8.0 */
	animation-name: headershowanim;
	animation-duration: .5s;
}

@-webkit-keyframes headershowanim {
  0%   {transform: translate(0,-100%);}
  100% {transform: translate(0,0%);}
}

.header-container .logo-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 9;
}

.header-container .container{
	position: relative;
	
/*
	position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 999999;
    background-color: #ffffff;
*/
}

.header-container .menu-btn-container {
	position: relative;
	display: inline-block;
	
	padding: 13px;
	background-color: #000000;
	
	cursor: pointer;
	
	z-index: 999999;
}

.header-container .menu-btn-container .close-btn-container {
	position: absolute;
	top: 0;
	left: 0;
	padding: 13px;
	
	opacity: 0;
}


.menu-wrap {
	position: relative;
}

.menu-wrap .menu-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	
	font-family: "BebasNeueBold";
	font-size: 50px;
	line-height: 70px;
	color: #ffffff;
	
	z-index: 99999;
	
	display: none;
}

.menu-wrap .menu-container .container {
	background-color: #000000;
	height: 100vh;
}


.menu-wrap .menu-container .row {
	height: 100vh;
}

.menu-wrap .menu-container ul {
	padding-inline-start: 0;
	border:	1px solid #000000;
	background-color: #000000;
	color: #ffffff;
	padding: 5px 0px;
}

.menu-wrap .menu-container li {
/* 	display: inline; */
	list-style: none;
	
    padding: 10px 10px 0px 40px;
}

.menu-wrap .menu-container li:hover {
	background-color: #D9000D;
}


.menu-wrap .back-btn-container {
	display: none;
	padding: 10px;
}

.menu-wrap .back-btn-container.active {
	display: inline-block;
}


.menu-wrap.active {
	z-index: 99999;
}

.menu-wrap.active .menu-btn-container > img {
	opacity: 0;
}
.menu-wrap.active .menu-btn-container .close-btn-container {
	opacity: 1;
}
.menu-wrap.active .menu-container {
	display: block;
}




.menu-project-wrap {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    display: none;
}

.menu-project-wrap.show {
	display: block;
}

.menu-project-wrap .menu-btn-container {
    float: right;
    background-color: #d9010e;
}

.menu-project-wrap .menu-container .container {
	background-color: #d9010e;
}

.menu-project-wrap .menu-container ul {
	background-color: #d9010e;
	border: none;
}

.menu-project-wrap .menu-container li:hover {
	background-color: #000000;
}


@media (max-width: 400px) {
	.menu-project-wrap .menu-container li {
		font-size: 40px;
		line-height: 60px;
	}
	
	.menu-wrap .menu-container li {
		padding: 0px 10px 0px 40px;	
	}
}



.container {
	max-width: 500px;
}



.admin-header-container {
	position: relative;
	padding: 20px 10px 25px 20px;
	background-color: #EBEBE7;
}

.admin-header-container .admin-name {
	font-family: "BebasNeueBold";
	font-size: 25px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.admin-header-container .btns-container {
/* 	text-align: center; */
}
.admin-header-container .btns-container .round-btn {
	margin-right: 10px;
	margin-bottom: 10px;
}

.admin-header-container .btns-container a:last-child .round-btn {
	margin-right: 0px;
}

.round-btn {
	display: inline-block;
	
	padding: 13px 20px 11px;
	min-width: 140px;
		
	background-color: #000000;
	color: #ffffff;
	text-align: center;
	
	font-family: "GothamMedium";
	font-weight: bold;
	font-size: 12px;
	border-radius: 20px;
}
.round-btn img {
	vertical-align: top;
	padding-right: 5px;
}

.round-btn:hover {
	background-color: #D9000D;
}


.fullwidth-btn {
	position: relative;
	width: 100%;
	padding: 15px 5px;
	
	font-family: "GothamMedium";
	font-size: 15px;
	line-height: 15px;
	
	background-color: #000000;
	color: #ffffff;
	
	text-align: center;
	margin: 10px auto;
	
	cursor: pointer;	
	
	border: none;
}

.fullwidth-btn img {
	margin-right: 5px;
/* 	vertical-align: top; */
}

.fullwidth-btn span {
/* 	vertical-align: middle; */
}

.fullwidth-btn:hover {
	background-color: #D9000D;
}

.fullwidth-btn.red {
	background-color: #D9000D;
}

.fullwidth-btn.red:hover {
	background-color: #000000;
}

.fullwidth-btn.disabled {
	opacity: 0.2;
	pointer-events: none;
}



.img-container {
	position: relative;
	width: 100%;
	background-color: grey;
	background-position: center center;
	background-size: cover;	
}

.img-container .fileupload {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.img-container .progress {
	position: absolute;
	bottom: 0;
	left: 0;
	
	width: 100%;
	opacity: 0;
	
	pointer-events: none;
}
.img-container .progress.active {
	opacity: 1;
}
.progress-success {
	background-color: #2bbb06;
}



.form-input {
	border: 1px solid #DCDCDC;
	border-radius: 0px;
    font-family: "GothamBold";
    color: #000000;
    font-size: 15px;
    line-height: 15px;
    padding: 15px;
    width: 100%;
    -webkit-appearance: none;
}
.form-input::placeholder {
	color: #000000;
}



.title-container {
	position: relative;
	display: inline-block;
	font-family: "BebasNeueBold";
	text-transform: uppercase;
	
	font-size: 50px;
	line-height: 50px;
	
	margin: 40px 0px;
}

.title-container .stroke-line {
	position: absolute;
	top: 35%;
	left: 0;
	width: 100%;
	height: 6px;
	
	transform: translate(0,0);
	
	background-color: #D9000D;
	
	z-index: -1;
}


.section-title-container {
	width: 100%;
	padding: 15px 10px 10px;
	background-color: #D9000D;
	color: #ffffff;
	
	font-family: "BebasNeueBold";
	text-transform: uppercase;
	font-size: 30px;
	line-height: 30px;
	
	margin-top: 20px;
}


/*** LOGIN *****/


.login .logo-img {
	margin: 60px 0px;
}

.login .form-input {
	max-width: 300px;
	margin-bottom: 20px;
}


.login button {
	border: none;
	border-radius: 40px;
	
	display: inline-block;
	background-color: #D9000D;
	
	padding: 15px;
	
	margin-top: 30px;
}
.login button img {
	vertical-align: top;	
}
.login button:hover {
/* 	background-color: #000000; */
}


.twocolumn-title-container {
	position: relative;
	margin-top: 10px;
}
.twocolumn-title-container .twocolumn-title-1,
.twocolumn-title-container .twocolumn-title-2{
	display: inline-block;
	width: 49%;
	font-family: "GothamMedium";	
}


/**** PROJECTS (HOME) ****/


.projects .projects-item {
	background-color: #EBEBE7;
	
	margin-bottom: 40px;
}

.projects .projects-item .projects-item-cover {
	background-position: center center;
	background-size: cover;
}

.projects .projects-item .projects-item-info {
	padding: 10px 15px;
	font-family: "GothamBook";
}

.projects .projects-item .projects-item-title {
	font-family: "BebasNeueBold";
	text-transform: uppercase;
	font-size: 25px;
}

.projects .projects-item .projects-item-date {
	float: right;
}


/**** CLIENTS ****/


.clients .title-container {
	margin-bottom: 20px;
}

.clients .client-item {
	padding: 12px 15px;
	background-color: #EBEBE7;
	font-family: "GothamBold";
	margin-bottom: 5px;
}

.clients .form-input {
	max-width: 300px;
	margin-bottom: 20px;
}


.clients.add-client .title-container {
	margin-bottom: inherit;
	margin: 60px 0px;
}


.clients.add-client button {
	border: none;
	border-radius: 40px;
	
	display: inline-block;
	background-color: #D9000D;
	
	padding: 15px;
	
	margin-top: 30px;
}
.clients.add-client button img {
	vertical-align: top;	
}
.clients.add-client button:hover {
/* 	background-color: #000000; */
}

.clients.add-client label {
	display: block;
	font-weight: bold;
}

.clients select {
	padding: 5px 20px;
}

/*** PROJECT NEW ****/

.project-new h4 {
	font-family: "BebasNeueBold";
	font-size: 25px;
	line-height: 25px;
}


.project-new form input,
.project-new form select,
.project-new form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #DCDCDC;
	
	-webkit-appearance:none;
}

.project-new form select {
	font-family: "GothamMedium";
	padding: 15px 10px;
}

.project-new form textarea {
	height: 200px;
}

.project-new button.round-btn {
	width: 100%;
	background-color: #D9000D;
	
	margin: 0px 0px 40px;
}


/*** PROJECT ***/

.project .cover-img-container {
	position: relative;
	width: 100%;
}

.project .project-header-container {
	position: relative;
	padding: 25px 10px 30px 20px;
	background-color: #EBEBE7;
}

.project .project-header-container .project-name {
	font-family: "BebasNeueBold";
	font-size: 50px;
	line-height: 50px;
	text-transform: uppercase;
	margin-bottom: 0px;
}
.project .project-header-container .project-name input {
	padding-top: 10px;
	margin-bottom: 5px;
	
	width: 100%;
}

.project .project-header-container .project-company {
	font-family: "GothamBold";
	font-size: 15px;
	line-height: 15px;
	margin-bottom: 5px;
}

.project .project-header-container .project-agency {
	font-family: "GothamBook";
	font-size: 15px;
	line-height: 15px;
}

.project .project-header-container .project-agency input {
	padding: 5px;
}

.project .project-header-container .fullwidth-btn {
	margin-top: 30px;
	margin-bottom: 0px;
}


.project .team-container {
	position: relative;
}

.project .team-container .team-item {
	position: relative;
	
	border: 1px solid #DCDCDC;
/* 	padding: 5px 0px; */
}

.project .team-container .team-item .team-role,
.project .team-container .team-item .team-name {
	display: inline-block;
	width: 49%;
}

.project .team-container .team-item select,
.project .team-container .team-item input {
	width: 100%;
	border: none;
	-webkit-appearance:none;
}

/* .project .team-container .team-item select { */
.project .team-container .team-role {
	padding: 10px 5px;
	border-right: 1px solid #DCDCDC;
}

.project .team-container .team-item .remove-btn {
	position: absolute;
	top: 50%;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
	
	transform: translate(0,-50%);
	
	z-index: 9;
}


.project .actors-container {
	position: relative;
}

.project .actors-container .actor-item {
	position: relative;
	border: 1px solid #DCDCDC;
	margin-bottom: -1px;
	background-color: #ffffff;
}

.project .actors-container .actor-item .actor-name,
.project .actors-container .actor-item .actor-character,
.project .actors-container .actor-item .actor-sort-col {
	display: inline-block;
	width: 49%;
}

.project .actors-container .actor-item.actor-item-sort .actor-name,
.project .actors-container .actor-item.actor-item-sort .actor-character {
	width: 45%;
}

.project .actors-container .actor-item .actor-sort-col {
	width: 7%;
	cursor: pointer;
	border-right: 1px solid #DCDCDC;
	text-align: center;
}

.project .actors-container .actor-item .actor-sort-col img {
	width: 50%;
	opacity: 0.1;
}

.project .actors-container.ui-sortable .actor-item .actor-sort-col img {
	opacity: 1;
}

.project .actors-container .actor-item select,
.project .actors-container .actor-item input {
	width: 100%;
	border: none;
	-webkit-appearance:none;
/* 	padding: 10px 5px; */
	
}

/* .project .actors-container .actor-item .actor-name input { */
.project .actors-container .actor-item .actor-name {
	border-right: 1px solid #DCDCDC;
	padding: 10px 5px;
}

.project .actors-container .actor-item .remove-btn {
	position: absolute;
	top: 50%;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
	
	transform: translate(0,-50%);
	
	z-index: 9;
}

.project .actors-container-wrap {
	position: relative;
}

.project .actors-container-wrap .actors-container-overlayblock {
	position: absolute;
	top: 0;
	right: 0;
	width: 92%;
	height: 100%;
	z-index: 10;
	background-color: rgba(0,0,0,0);
	
	display: none;
}

.project .actors-container-wrap .actors-container-overlayblock.active {
	display: block;
}

.overlay-bottom-button {
	position: fixed;
	bottom: 0;
	left: 0; 
	width: 100%;
	background-color: #000000;
	color: #ffffff;
	text-align: center;
	padding: 15px 10px;
	
	font-size: 16px;
	
	border-top: 1px solid #dcdcdc;
	
	z-index: 99;
	
	display:none;
}
.overlay-bottom-button.active {
	display: block;
}

.overlay-bottom-button img {
	height: 15px;
}

.overlay-bottom-button.red {
	background-color: #D9000D;
}


/**** CASTING ****/

.casting .title-container {
	margin-bottom: 0px;
}

.casting .section-title-container {
	margin-bottom: 20px;
}

.casting select {
	width: 100%;
    padding: 10px;
    border: 1px solid #DCDCDC;
    -webkit-appearance: none;
    
    font-family: "GothamMedium";
    padding: 15px 10px;
}

.casting h4 {
    font-family: "BebasNeueBold";
    font-size: 25px;
    line-height: 25px;
}

.casting .casting-item-container {
	position: relative;
	width: 100%;
	margin: 20px 0px;
}

.casting .casting-actor-name {
	font-family: "BebasNeueBold";
	font-size: 20px;
	line-height: 20px;
	color: #D9000D;
	text-transform: uppercase;
	margin: 10px 0px 5px;
}

.casting .casting-actor-character {
	font-family: "BebasNeueBold";
	font-size: 20px;
	line-height: 20px;
	color: #000000;
	text-transform: uppercase;
}

.casting .remove_casting {
	margin-top: 5px;
	background-color: #EBEBE7;
}
/*
.casting .casting-item-img-container {
	position: relative;
	width: 100%;
	background-color: grey;
	background-position: center center;
	background-size: cover;	
}
*/


.casting .save-btn-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px 0px;
	background-color: #ffffff;
	text-align: center;
	
	display: none;
}

.casting .save-btn-container.active {
	display: block;
}




/*** SCRIPT ***/

.project-script .title-container {
	margin-bottom: 0px;
}

.project-script .section-title-container {
	margin-top: 0px;
    margin-bottom: 10px;
}

.project-script .project-detail-container {
	background-color: #000000;
	color: #ffffff;
	font-family: "GothamMedium";
	padding: 10px;
}

.project-script .tab-container {
	text-align: left;
	background-color: #EBEBE7;
	color: #000000;
	font-family: "GothamMedium";
	margin: 0px 1px;
	padding: 10px 10px;
	white-space: nowrap;
	
	cursor: pointer;
}
.project-script .tab-container.active {
	background-color: #000000;
	color: #ffffff;
}

.project-script .slick-prev:before ,
.project-script .slick-next:before {
  color: rgba(0, 0, 0, 0.6);
}

.project-script .scripts-container {
	padding: 3px 0px;
}

.project-script .script-container {
	display: none;
}
.project-script .script-container.active {
	display: block;
}

.project-script .script-container-title-container {
	position: relative;
	background-color: #000000;
	color: #ffffff;
	font-family: "GothamMedium";
	
	padding: 15px 10px;
	margin: 0px 1px;
	white-space: nowrap;
}

.project-script .script-container-content-container {
	padding: 10px 5px;
	font-family: "GothamMedium";
	font-size: 14px;
	line-height: 18px;
}



.settings-btn-container {
	position: absolute;
	top: 10px;
	right: 5px;
	
	padding: 5px 10px;
	border-radius: 10px;
	background-color: #ffffff;
	color: #000000;
}





.project-script .shooting-edit-item {
	position: relative;
	border: 1px solid #DCDCDC;
	margin-bottom: 10px;
}

.project-script .shooting-edit-item input {
	width: 100%;
	
	color: #000000;
	border: none;
}

.project-script .shooting-edit-item-col-1 {
	display: inline-block;
	width: 15%;
	
}
.project-script .shooting-edit-item-col-1 input {
	text-align: center;
}

.project-script .shooting-edit-item-col-2 {
	display: inline-block;
	width: 40%;
	border-left: 1px solid #DCDCDC;
	border-right: 1px solid #DCDCDC;
}

.project-script .shooting-edit-item-col-3 {
	display: inline-block;
	width: 40%;
}


.project-script .shooting-edit-item-del-btn {
	position: absolute;
	top: 0;
	right: 0;
	padding: 2px 7px;
	border: 1px solid #DCDCDC;
	cursor: pointer;
}


.shooting-item-container {
	position: relative;
	
	padding-top: 10px;
	margin-bottom: 20px;
}

.shooting-item-container .shooting-item-order {
	position: absolute;
	top:0;
	left: 5px;
/* 	transform: translate(0,-50%);	 */
	font-family: "BebasNeueBold";
    text-transform: uppercase;
    color: #D9000D;
    font-size: 42px;
    line-height: 42px;
    z-index: 2;
}

.shooting-item-img.img-container {
	background-color: #f0f0f0;
	background-size: contain;
	background-repeat: no-repeat;
}

.shooting-item-container .shooting-item-text {
	padding: 5px 0px;
}

.shooting-item-img-check {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-position: center;
	background-image: url("../img/icon-check-white.svg");
	cursor: pointer;
	z-index: 4;
}

.shooting-item-img-check.active {
	background-image: url("../img/icon-check-green.svg");
	background-image: url("../img/icon-check-red.svg");
}



.project-script .logo-edit-item {
	width: 46%;
	margin: 1%;
	display: inline-block;
}

.project-script .logo-item-col {
	width: 100%;
}








/*** DECORS ***/

.project-decors .title-container {
	margin-bottom: 0px;
}

.project-decors .section-title-container {
	margin-top: 0px;
    margin-bottom: 10px;
}

.project-decors .project-detail-container {
	background-color: #000000;
	color: #ffffff;
	font-family: "GothamMedium";
	padding: 10px;
}

.project-decors .decors-edit-item {
	position: relative;
	border: 1px solid #DCDCDC;
	margin-bottom: 10px;
}

.project-decors .decors-edit-item input {
	width: 100%;
	
	color: #000000;
	border: none;
	
	border-bottom: 1px solid #DCDCDC;
    padding: 10px;
}

.project-decors .decors-edit-item-col-1 {
	display: inline-block;
	width: 39%;
	margin-right: 1%;
	vertical-align: top;
}
.project-decors .decors-edit-item-col-1 input {
	text-align: center;
}

.project-decors .decors-edit-item-col-2 {
	display: inline-block;
	width: 59%;
	border-left: 1px solid #DCDCDC;
	border-right: 1px solid #DCDCDC;
	vertical-align: top;
}

.project-decors .decors-edit-item-col-3 {
	display: inline-block;
	width: 40%;
}


.project-decors .decors-edit-item-del-btn {
	position: absolute;
	top: 0;
	right: 0;
	padding: 2px 7px;
	border: 1px solid #DCDCDC;
	cursor: pointer;
}


.decors-item-container {
	position: relative;
	
	padding-top: 10px;
	margin-bottom: 20px;
}

.decors-item-container .decors-item-order {
	position: absolute;
	top:0;
	left: 5px;
/* 	transform: translate(0,-50%);	 */
	font-family: "BebasNeueBold";
    text-transform: uppercase;
    color: #D9000D;
    font-size: 42px;
    line-height: 42px;
    z-index: 2;
}

.decors-item-container .decors-item-text {
	padding: 5px 0px;
}



.decors-item {
	position: relative;
/* 	border: 1px solid #DCDCDC; */
	margin-bottom: 20px;
}

.decors-item .img-container {
	background-color: #f0f0f0;
	background-size: contain;
	background-repeat: no-repeat;
}

.decors-item-col-1 {
	display: inline-block;
	width: 39%;
	margin-right: 1%;
	vertical-align: top;
}

.decors-item-col-2 {
	display: inline-block;
	width: 59%;
	vertical-align: top;
}

.decors-item .decors-item-col-2 div {
	width: 100%;
	
	border: none;
	
	padding-bottom: 7px;
	padding-left: 5px;
	
	font-family: "GothamBold";
    font-size: 15px;
    line-height: 15px;
}

.decors-item .decors-item-id {
	font-family: "GothamBold" !important;
    color: #D9000D;
}

.decors-item .decors-item-location {
	font-family: "GothamMedium" !important;
	font-size: 12px !important;
}

.decors-item .decors-item-btns-container div {
	display: inline-block;
	width: 49%;
	height: 46px;
}

.decors-item .decors-item-btns-container .decor-location-btn {
/* 	display: inline-block; */
/* 	width: 45%; */
	background-color: #D9000D;
}
.decors-item .decors-item-btns-container .decor-location-btn:hover {
	background-color: #000000;
}

.decors-item .decors-item-btns-container a:nth-child(2) div {
	float: right;
}

@media (max-width: 500px) {
	.decors-item-col-1 {
		margin-right: 0px;
	}
}



/*** EVENTS ***/


.event-shooting-detail-container {
	display: none;
	margin-bottom: 20px;
}

.event-shooting-detail-container.active {
	display: block;
}

.event-detail-info-container {
	margin-bottom: 20px;
}

.event-detail-info-container .col-12 {
	margin-top: 20px;
}

.event-detail-info-container h5 span,
.event-detail-info-container h5 input {
	vertical-align: middle;
}
.event-detail-info-container h5 input {
	margin-right: 10px;
}
 
.event-props-container .prop-item {
	position: relative;
}

.event-props-container .prop-item .remove-btn {
	position: absolute;
	top: 50%;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
	transform: translate(0,-50%);
	z-index: 9;
}

.event-notes-container .note-item {
	position: relative;
}

.event-notes-container .note-item .remove-btn {
	position: absolute;
	top: 50%;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
	transform: translate(0,-50%);
	z-index: 9;
}

.event-actors-container .actor-item {
	position: relative;
	border: 1px solid #DCDCDC;
}

.event-actors-container .actor-item .col-detail {
	padding: 10px 5px;
	display: inline-block;
	width: 49%;
}
.event-actors-container .actor-item .col-detail:first-child {
	border-right: 1px solid #DCDCDC;
}

.event-actors-container .actor-item .remove-btn {
	position: absolute;
	top: 50%;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
	transform: translate(0,-50%);
	z-index: 9;
}


.event-detail-container {
	position: relative;
	margin-bottom: 5px;
}

.event-detail-container .event-detail-header {
	position: relative;
	background-color: #EBEBE7;
	color: #000000;
	padding: 15px;
	font-family: "GothamBold";
	
	cursor: pointer;
}

.event-detail-container .event-detail-header.red {
	background-color: #D9000D;
	color: #ffffff;	
}

.event-detail-container .event-detail-header .shooting-item-img-check {
	position: initial;
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
	margin-top: -4px;
}

.event-detail-container .event-detail-content {
	position: relative;	
	
	display: none;	
	
	margin-bottom: 20px;
}

.event-detail-container .event-detail-content .entrie-row{
	border: 1px solid #DCDCDC;
	padding: 10px 20px;
}

.event-detail-container .event-detail-content .sec-title {
	position: relative;
	background-color: #000000;
	color: #ffffff;
	font-family: "GothamBold";
	padding: 5px 20px;
	margin: 10px 0px;
	
	cursor: pointer;
}

.event-detail-container .event-detail-content .sec-content {
	display: none;
}

.event-detail-container .actor-item {
	position: relative;
	border: 1px solid #DCDCDC;
}

.event-detail-container .actor-item .col-detail {
	padding: 10px 5px;
	display: inline-block;
	width: 49%;
}
.event-detail-container .actor-item .col-detail:first-child {
	border-right: 1px solid #DCDCDC;
}

.toggle-open-icon {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 15px;
	height: 15px;
	background-image: url(../img/icon-more.svg);
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(0,-50%);
}

.toggle-open-icon.opened {
	background-image: url(../img/icon-less.svg);
}

.toggle-open-icon.white {
	background-image: url(../img/icon-more-white.svg);
}
.toggle-open-icon.white.opened {
	background-image: url(../img/icon-less-white.svg);
}

.schedule_filename {
	margin: 5px 0px;
	padding: 20px 5px;
	width: 100%;
	text-align: center;
	background-color: #e8e8e8;
}
.schedule_filename span {
	vertical-align: middle;
}

.schedule_filename img 
{ 
	height: 15px;
	padding-left: 10px;
}

.schedule_filename_icon {
	height: 20px;
}


.script-container .print-icon {
	width: 40px;
	margin: 10px 0;
}



