html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}
body {
    margin: 0;
    background: rgba(3, 10, 75, 0.15);
    color: rgb(8, 1, 67);
    font-family: Helvetica;
}
.main-container {
	width: 100%;
	max-width: 1114px;
	height: auto;
	margin: auto;
	margin-top: 80px;
	padding: 15px;
	padding-bottom: 0;
	position: relative;
	/* border: 1px solid red; */
}
.form-main-search {
    width: 100%;
    min-width: 310px;
    max-width: 550px;
    height: 45px;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 80px;
    position: relative;
    /* border: 1px solid red; */
}
.search {
    width: 100%;
    height: 100%;
    padding: 8px;
    font-size: 1rem;
    color: rgb(8, 1, 67);
    border: none;
    outline: 1px solid rgba(3, 10, 75, 0.05);
}
.container-search-results {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 999;
    /* border: 1px solid purple; */
}
.search-result {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    cursor: pointer;
    background: white;
    box-shadow: 0 0 3px -2px rgba(0, 0, 0, 0.9);
    text-decoration: none;
}
.search-result:hover {
	background: rgb(245, 245, 245);
}
.container-img-result {
    width: 38px;
    height: 100%;
    padding: 4px 4px;
    flex-shrink: 0;
    /* border: 1px solid orange; */
}
.img-result {
	width: 100%;
	height: 100%;
}
.title-result {
    width: 100%;
    height: 100%;
	display: flex;
	align-items: center;
    font-size: 0.8rem;
	margin: 0 8px;
    color: rgb(8, 1, 67);
    text-align: center;
	overflow: hidden;
    /* border: 1px solid green; */
}
.price-result {
    width: auto;
    height: auto;
	display: flex;
	align-items: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: rgb(25, 50, 175);
    text-align: center;
    /* border: 1px solid black; */
}
fieldset {
    width: 100%;
    background: white;
    border: 1px solid rgb(220, 220, 220);
    margin: 0 !important;
}
legend {
	font-size:0.8rem;
	color:rgb(8, 1, 67);
}
select {
	width: auto;
	height: 38px;
	border-radius: 6px;
	padding: 8px;
	border: 1px solid rgb(180, 180, 180);
	background: linear-gradient(rgb(255, 255, 255), rgb(235, 235, 235));
}
button:focus {
	outline: none;
}
select:focus {
	outline: none !important;
}
.overlay-change {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 125, 255, 0.15);
	overflow: hidden;
	z-index: 9999;
}
.modal-change-opt {
    width: 310px;
    height: 200px;
    background: white;
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
}
.container-info {
	width: 100%;
	height: 100%;
	padding: 8px;
	background: white;
}
.container-info-opt {
	border: 1px solid rgba(8, 1, 67, 0.5);
}
.container-info-success {
	border: 1px solid rgba(8, 67, 1, 0.5);
}
.container-info-failure {
	border: 1px solid rgba(67, 1, 8, 0.5);
}
.title-opt {
    width: 100%;
    height: 125px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 20px;
    margin-top: 4px;
    overflow-y: auto;
    word-wrap: break-word;
    /* border: 1px solid green; */
}
.container-decision-opt {
	width: 100%;
	height: 25px;
	margin-top: 16px;
	display: flex;
	justify-content: space-around;
	/* border: 1px solid red; */
}
.btn-decision {
    width: auto;
    height: 100%;
    padding: 0 15px;
    display: block;
    font-size: 0.75rem;
    cursor: pointer;
    color: rgb(30, 30, 30);
    border-radius: 3px;
    background: linear-gradient(rgb(255, 255, 255), rgb(221, 221, 221));
    border: 1px solid rgb(100, 100, 100);
}
.btn-decision:hover {
	background: linear-gradient(rgb(221, 221, 221), rgb(255, 255, 255));
}
.btn-decision:focus {
	outline: none;
}
.overlay-waiting {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 125, 255, 0.15);
    overflow: hidden;
    z-index: 9999;
}
.container-img-loading {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 100%;
}
.img-loading-waiting {
	width: 50px;
	height: 50px;
}
.overlay-change-hidden {
	display: none;
}

@media only screen and (max-width: 441px) {
	.title-result {
		white-space: nowrap;
	}
}

@media only screen and (min-width: 1600px) and (max-height: 800px) {
	body {
		zoom: 1.15;
	}
}

@media only screen and (min-width: 1600px) and (min-height: 801px) {
	body {
		zoom: 1.2;
	}
}

@media only screen and (min-width: 1681px) and (max-width: 1920px) {
	body {
		zoom: 1.25;
	}
}

@media only screen and (min-width: 1921px) {
	body {
		zoom: 1.4;
	}
}
