@font-face {
    font-family: Opel_Sans_Bold;
    src: url("../fonts/Opel_Sans_Bold.ttf");
}

@font-face {
    font-family: "BroadwayD";
    src:
        url("../fonts/BroadwayD.otf") format("opentype"),
        url("../fonts/BroadwayD.ttf") format("truetype");
}

.passengers_block_header {
	position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    font-size: 37px;
    font-family: "BroadwayD";
    text-shadow: 3px 3px black;
    text-align: center;
    color: #CA89B3;
}

#passengers_block_subheader {
	position: absolute;
    width: 100%;
	height: 35px;
    top: 60px;
    left: 0;
    font-size: 32px;
    font-family: "BroadwayD";
    text-shadow: 3px 3px black;
    text-align: center;
    color: #CA89B3;
	z-index: 10;
}

#passengers_block_subheader span {
	margin-right: 30px;
}

.class_unit {
	cursor: pointer;
}

.class_unit:hover {
	color: #dcc6c6;
	text-decoration: underline;
}

.passenger_unit {
	width: 100%;
    height: 116px;
    position: relative;
    text-align: left;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 5px black;
}

#passenger_list {
    text-align: center;
    font-size: 20px;
    font-family: Opel_Sans_Bold;
    color: white;
    width: 970px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.avatar {
	border: 3px solid white;
    width: 100px;
    height: 100px;
}

.passenger_info {
	font-size: 25px;
    height: 90%;
    margin-left: 10px;
    font-family: "BroadwayD";
}

.passenger_info .passenger_name {
    font-family: "BroadwayD";
	height: 52px;
    overflow: hidden;
    background-color: white;
    color: #CA89B3;
    width: 849px;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.passenger_info .passenger_class {
    font-family: "BroadwayD";
    text-shadow: 3px 3px black;
	display: flex;
    margin-bottom: 10px;
    height: 52px;
    background-color: #CA89B3;
    color: white;
    width: 849px;
    align-items: center;
    padding-left: 5px;
}

.passengers_list_line {
	width: 100%;
	height: 20px;
	background: #009899;
	background-size: 100%;
}

.detailed_info {
    font-family: "BroadwayD";
    text-shadow: 3px 3px black;
    color: white;
    font-size: 13px;
    text-decoration: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 120px;
    text-align: center;
}

.detailed_info:hover {
	color: #dcc6c6;
	text-decoration: underline;
}

.passenger_name img {
    margin-left: 10px;
}