body,html,p,ul{
	margin: 0;
	padding: 0;
}

body{
	font-family: Muller, sans-serif;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	font-size: 24px;
	color: #333333;
	padding-bottom: 30px;
}
a,a:visited{
	color: inherit;
	text-decoration: none;
}
h1,h1,h3{
	font-weight: inherit;
	margin: 0;
}
ul{
	list-style-type: none;	
}
h2{
	font-size: 24px;
	font-weight: 700;
}
h3{
	font-size: 24px;
	font-weight: 700;
}
.mainWidth{
	width: 1100px;
}
.mainElement{
	padding-top: 5px;
}
.mainTitle, .calculatorsMenu{
	font-size: 25px;
    margin-bottom: 15px;
	margin-top: 15px;
}
.calculatorsMenu::after{
	content: '';
	display: block;
	clear: both;
}
.calculatorsMenu > li{
	float: left;
}
.calculatorsMenu > li:nth-of-type(1n + 2){
	margin-left: 10px;
}
.mainTitle{
	padding-left: 10px;	
}
.topColorElement{
	width: 100%;
	height: 100px;
	background-image: linear-gradient(225deg, #FFEFC9 0%, #FFCF5C 100%);
	margin-top: 68px;
}
.secondTitle{
	font-size: 30px;
}
.calculations{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: normal;
}
.calculations .mainCalculatorInputs{
    width: 30%;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0px 16px 16px rgba(50, 50, 71, 0.08), 0px 24px 32px rgba(50, 50, 71, 0.08);
	border-radius: 12px;
}
.calculations .results{
	padding-top: 20px;
	margin-left: 78px;
//	max-width: 500px;
	width: 500px;
	visibility: hidden;	
}
.calculations .results.visible{
	visibility: visible;
}
.calculations h2{
	margin-bottom: 15px;
}
.littleTitle{
	font-weight: 700;
	font-size: 16px;
}
.resultValue{
	font-weight: 700;
	font-size: 20px;
	margin-left: 40px;
}

.buttonTypeA{
	display: block;
	cursor: pointer;
	font-size: 16px;
	height: 56px;
	line-height: 56px;
	background-color: #DAB11A;
	border-radius: 6px;
	text-align: center;
}
.inputData .littleTitle{
	margin-bottom: 16px;
}
.inputData .optionBlock{
	margin-top: 20px;
	position: relative;
}
.inputData .optionBlock.firstOptBlock{
	margin-top: 8px;
}
.pseudoRadioButtons > li{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	font-weight: 300;
	cursor: pointer;
}
.pseudoRadioButtons.simpleLinks > li > a{
	display: block;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;	
}
.pseudoRadioButtons > li:nth-of-type(1n + 2){
	margin-top: 12px;
}
.pseudoRadioButtons > li > *:nth-child(1n + 2),
.pseudoRadioButtons.simpleLinks > li > a > *:nth-child(1n + 2){
	margin-left: 8px;
}
.pseudoRadioButtons > li.active{
	font-weight: normal;
}
.pseudoRadioButtons .indicator{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	box-shadow: inset 0px 4px 4px rgba(50, 50, 71, 0.08), inset 0px 4px 8px rgba(50, 50, 71, 0.06);
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.pseudoRadioButtons .indicator::after{
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-image: linear-gradient(202.38deg, #FFD742 8.1%, #F4CD36 86.34%);
	box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);	
	display: none;
}
.pseudoRadioButtons > li.active .indicator::after{
	display: block;
}
.pseudoInput{
	width: 100%;
	height: 40px;	
	box-sizing: border-box;
	position: relative;
	font-weight: 300;
	font-size: 14px;
}
.pseudoInput .tip{
	position: absolute;
	right: 22px;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	width: 12px;
	height: 6px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('../images/tip.png');
	transition-property: transform;
	transition-duration: 0.7s;
}
.pseudoInput.opened .tip{
	transform: rotateZ(180deg);
}
.pseudoInput .selectedOption{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #E4E4E4;
	border-radius: 6px;
	box-sizing: border-box;
}
.pseudoInput .selectedOption.inscriptionVal{
	color: #000000;
}
.pseudoInput.opened .selectedOption{
	border-color: #FFD742;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-color: transparent;	
}
.pseudoInput .selectedOption, .pseudoInput .pseudoOptions > li{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	cursor: pointer;
	padding-left: 16px;
-webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;	
	
}
.pseudoInput .pseudoOptions{
	background-color: white;
	display: none;
	max-height: 400px;
	overflow-y: scroll;
}
.pseudoInput .pseudoOptions > li{
	height: 40px;	
	transition-property: background-color;
	transition-duration: 0.5s;
}
.pseudoInput .pseudoOptions > li:hover{
	background-color: #F5D252;
}
.pseudoInput .pseudoOptions{
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	border-radius: 0 0 6px 6px;
	border: 1px solid #FFD742;
	border-top: none;
	box-sizing: border-box;
}
.pseudoInput.opened .pseudoOptions{
	display: block;
}
.bottomInfo{
	font-size: 12px;
	padding-top: 30px;
	margin-top: auto;
}
.pseudoInput .pseudoOptions > li.withBottomLine{
	border-bottom: 1px solid #a30000;
}
/* Псевдочекбокс */
.pseudoCheckbox{
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;	
	cursor: pointer;
}
.pseudoCheckbox .pseudoCheckboxElement{
	width: 32px;
	height: 32px;
	border: 1px solid #E4E4E4;
	border-radius: 6px;
	box-sizing: border-box;
	background-color: white;
	transition-property: background-color, brder-color;
	transition-duration: 0.5s;
}
.pseudoCheckbox .pseudoCheckboxLabel{
	font-size: 16px;
	margin-left: 16px;
}
.pseudoCheckbox.checked .pseudoCheckboxElement{
	border-color: #F4D14E;
//	border: none;
//	background-image: linear-gradient(180deg, #FADB69 0%, #F4D14E 100%);	
	background-color: #F4D14E;
	position: relative;
}
.pseudoCheckbox.checked .pseudoCheckboxElement::after,
.pseudoCheckbox.checked .pseudoCheckboxElement::before{
	display: block;
	content: '';
	position: absolute;
//	width: 2px;
	background-color: black;
}
.pseudoCheckbox.checked .pseudoCheckboxElement::before{
	width: 3px;
	height: 30%;
	transform-origin: center bottom;
	transform: rotate(-45deg);
	left: 40%;
	top: 35%;	
}
.pseudoCheckbox.checked .pseudoCheckboxElement::after{
	height: 3px;
	width: 55%;
	transform-origin: left center;
	transform: rotate(-45deg);
	left: 43%;
	top: 65%;
}
/* Псевдочекбокс завершение */
/* Псевдо радиокнопки */

/* Псевдо радиокнопки завершение */
.resultsList > li:nth-of-type(1n + 2){
	margin-top: 30px;
}
/* Псевдо радиокнопки завершение */
.resultsList > li:nth-of-type(1n + 2).littleTopResultItemMargin,
.inputData .optionBlock.littleTopResultItemMargin{
	margin-top: 10px;
}

.resultsList > li{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.totalTitle {
	font-size: 22px;
}
.totalMg {
	margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
/*Поиск*/
.selectSearchWrapper input{
	font-family: inherit;
	color: inherit;
} 
/*Поиск завершение*/
/*.pseudoRadioButtons{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	font-size: 14px;
}
.pseudoRadioButtons > *:nth-of-type(1n + 2){
	margin-left: 30px;
}
.pseudoRadioButtons .RB{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #868686;
	position: relative;
}
.pseudoRadioButtons .RBTitle{
	margin-left: 7px;	
}
.pseudoRadioButtons .radioButtonWrapp{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.pseudoRadioButtons .radioButtonWrapp.checked .RB{
	border-color: #3b86ff;
}
.pseudoRadioButtons .radioButtonWrapp.checked .RB::before{
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	background-color: #3b86ff;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}*/
/*Поиск в калькуляторе*/
body .selectSearchWrapper{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 80%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	padding-left: 10px;
	background-color: white;
	box-sizing: border-box;
	padding-bottom: 0;
	transform: translate(1px,1px);	
}
body .selectSearchWrapper .searcherInscription{
	display: none;
}
body .selectSearchWrapper > input{
	height: 60%;
	width: 100%;
}
body .selectSearchWrapper > input,
body .selectSearchWrapper > input:focus{
	border: none;
	outline: none;
}
body .selectSearchWrapper .resultsInscription{
	display: none;
}
/*Поиск в калькуляторе завершение*/
/*-- Панель -- */
.calculatorPanel{
	font-size: 16px;
}
.calculatorPanel .tableTypeA{
	border-collapse: collapse;
}
.calculatorPanel .tableTypeA, .calculatorPanel .tableTypeA td, .calculatorPanel .tableTypeA th{
	border: 1px solid black;
	border-spacing: 5px;
}
.calculatorPanel .tableTypeA td, .calculatorPanel .tableTypeA th{
	padding: 2px;
}
.calculatorPanel .mainPanelElement{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	padding-top: 20px;
}
.calculatorPanel .auctionName{
	font-weight: bold;
	text-align: center;
}
.calculatorPanel .buttonTypeB{
	cursor: pointer;
}
.calculatorPanel .cargosActions > div{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.calculatorPanel .cargosActions > div > *:nth-child(1n + 2){
	margin-left: 5px;
}
.calculatorPanel .removeButt{
	display: block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url('../images/removeButt.png');
	cursor: pointer;
}
.calculatorPanel .centralText{
	text-align: center;
}
.calculatorPanel .elementsAdder{
	margin-bottom: 15px;
}
[data-editMode='false'] [data-elementMode='edited']{
	display: block;
}
[data-editMode='false'] [data-elementMode='edit']{
	display: none;
}
[data-editMode='true'] [data-elementMode='edited']{
	display: none;
}
[data-editMode='true'] [data-elementMode='edit']{
	display: block;
}
.cargosPanelMenu{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;	
	margin-bottom: 15px;
	font-size: 22px;
}
.cargosPanelMenu > li:nth-of-type(1n + 2){
	margin-left: 15px;
}
.cargosPanelMenu > li > a{
	cursor: pointer;
}
.calculatorPanel .editerBox{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 3px;
}
.calculatorPanel .editerBox:nth-of-type(1n + 2){
	border-top: 1px solid black;
}
.calculatorPanel .editerBox .clarificationEB{
	margin-right: 5px;
	min-width: 40px;
}
.panelTable tr{
	background-color: white;
}
body.auctionsPanel a[href *= 'auctionsPanel'],
body.documentsCalculatorPanel a[href *= 'documentsCalculatorPanel'],
body.aGFeePanel a[href *= 'aGFeePanel'],
body.cargosCalculator a[href *= 'cargosCalculator'],
body.AGCalculator a[href *= 'AGCalculator']{
	color: blue
}
body .autoAmountRadioWrapp .pseudoRadioButtons a{
	color: inherit;
}
.searcherWrapper{
	padding-bottom: 15px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	justify-content: flex-start;
	align-items: center;
}
.searcherWrapper .searcherInscription{
	margin-right: 5px;
}
.searcherWrapper .resultsInfoElWrapp{
	padding-left: 5px;
}
.searcherWrapper .resultsInfoEl{
	margin-left: 5px;
}
.tableTypeA tbody tr{
	transition-property: background-color;
	transition-duration: 0.5s;
}
.processingElement{
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: flex; 
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	z-index: 100;	
}
.processingElement::after,
.processingElement::before{
	display: block;
	content: '';
}
.processingElement::before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: gray;
	opacity: 0.7;
}
.processingElement::after{
	width: 50px;
	height: 50px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('../images/processing.png');
	position: relative;
}
[data-sortinformation]{
	color: blue;
	cursor: pointer;
}
/*-- Панель завершение -- */
/*-- Главная --*/
body.index{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	padding-top: 30px;
}
body.index .mainMenu{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
body.index .mainMenu > li > a{
	cursor: pointer;
}
body.index .mainMenu > li:nth-of-type(1n + 2){
	margin-top: 10px;
}
body.index .mainMenu > li > a:nth-of-type(1n + 2){
	margin-left: 15px;
}
/*-- Главная завершение --*/
.borderedEl{
	border-width: 2px;
	border-style: solid;
	padding: 2px;	
}
.goodLuck{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	padding-top: 30px;
}
.smile{
	width: 40px;
	height: 40px;
	margin-left: 10px;
}
.resultsList li.documentsPriceItem{
	display: none;
}
li.klaipedaAdditPrice {
	margin-left: 0px;
	display: none;	
}
li.serviceMessage,
li.documentInfoEl{
	display: none;
	font-size: 16px;
	font-weight: 700;
} 
.logo{
	height: 50px;
}
.calculatorsMenuWrapper.bottomMenu{
	display: none;
}
.calculatorsMenu > li > a{
	display: block;
}

.results li.EVHybridResult{
	display: none;
}
.results li.threeСarsInAContainerResult{
	display: none;
}
.autoAmountRadioWrapp .pseudoRadioButtons{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	font-size: 18px;
}
.autoAmountRadioWrapp .pseudoRadioButtons > li{
	cursor: pointer;
	margin-top: 0;
}
.autoAmountRadioWrapp .pseudoRadioButtons > li:nth-of-type(1n + 2){
	margin-left: 30px;
}
/*-- Таможенные платежи --*/
.pupupWrapper{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	z-index: 20;
	overflow-y: scroll;
//	display: none;
//	opacity: 0.5;
}
.pupupWrapper.hidden{
	display: none;
}
.pupupWrapper,
.pupupWrapper::before{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;	
}
.pupupWrapper::before{
	display: block;
	content: '';
	background-color: rgba(0,0,0,0.3);
}
.pupupWrapper .popup{
	background-color: white;
	box-shadow: 0px 8px 8px rgb(50 50 71 / 8%), 0px 8px 16px rgb(50 50 71 / 6%);
	border-radius: 8px;
	box-sizing: border-box;
	padding: 20px;
	width: 450px;
	position: relative;	
}
input[type = 'text'].customTextInput,
input[type = 'text'].customTextInput:focus{

}
input[type = 'text'].customTextInput{
	border: 1px solid #E4E4E4;
	outline: none;	
	border-radius: 6px;
	box-sizing: border-box;
	height: 40px;
	width: 100%;
	color: inherit;
	font-size: 14px;
	padding-left: 16px;
}
.inputData .resultsList.forСustomsPayments .littleTitle{
	margin-bottom: 0;
}
.closeButton{
	width: 20px;
	height: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('../images/closeButton.png');
	cursor: pointer;
}
.popup.customsPayments .closeButton,
.popup.servicesPackage .closeButton{
	position: absolute;
	top: 15px;
	right: 15px;
}
.fullLabelHeight.pseudoCheckbox{
	align-items: stretch;
}
.fullLabelHeight.pseudoCheckbox .pseudoCheckboxLabel{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
}
.customsPayments .NDSWrapp{
//	display: none;
}
/*-- Таможенные платежи завершение --*/
/*-- Пакеты услуг --*/
.pupupWrapper.servicesPackagePW{
//	opacity: 0.5;
//	display: none;
}
.pupupWrapper .popup.servicesPackage{
	width: auto;
	padding-top: 40px;
}
.pupupWrapper .popup.servicesPackage h2{
	text-align: center;
}
.servicesPackageList{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}
.servicesPackageList .servicesPackageItem:nth-of-type(1n + 2){
	margin-left: 19px;	
}
.servicesPackageList .servicesPackageItem{
	padding: 32px;
	box-shadow: 0 15px 25px rgb(0 0 0 / 5%);
	width: 378px;
	border-radius: 20px;	
}
.servicesPackageList .servicesPackageItem[data-status = 'active']{
	outline: 2px solid #FADB69;
}
.servicesPackageItem{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.servicesPackageItem .topPart{
	margin-bottom: 45px;
}
.servicesPackageItem .packageInfo > li{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;	
	font-size: 14px;
	wonf-weight: 300;
	text-align: center;
	line-height: 1.45em;
    letter-spacing: .01em;
}
.servicesPackageItem .packageInfo > li .severalParts{
	display: flex;
	flex-direction: row;
	flex-wrap: nowap;
	font-size: 11px;
	margin: 0 -10px;
}
.servicesPackageItem .packageInfo > li .severalParts > *{
	padding: 0 10px;
}
.servicesPackageItem .packageInfo > li .severalParts > *[data-partsNum = '2']{
	width: 50%;
}
.servicesPackageItem .packageInfo > li:nth-of-type(1n + 2){
	margin-top: 18px;
}
.servicesPackageItem .packageInfo > li:nth-of-type(1n + 2)::before{
	display: block;
	content: '';
	border: 1px dashed #C4C4C4;
	margin-bottom: 18px;
	width: 146px;
}
.servicesPackageItem .centralElementWrapp{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}
.servicesPackageItem .APButton{
	display: inline-block;
    height: 56px;
    line-height: 56px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    background-color: #F4D14E;
    box-shadow: 0 -2px 0 0 #e3c34a inset;
    transition-property: background-color, color;
    transition-duration: 0.5s;	
	border-top-left-radius: 7px 50%;
	border-bottom-left-radius: 7px 50%;
	border-top-right-radius: 7px 50%;
	border-bottom-right-radius: 7px 50%;	
	padding: 0 30px;
}
.servicesPackageItem .APButtonWrapp{
	margin-top: 25px;
}
.servicesPackageItem .SPPriceValSecondWrapp{
	color: #000;
	font-size: 36px;
	font-weight: 700;
}
/*-- Пакеты услуг завершение --*/
/*-- Попапы подсказок --*/
.cargosCalculator .withPromptButtonInString{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: felx-start;
	align-items: center;
}
.cargosCalculator .withPromptButtonInString .propmtButton{
	margin-left: 10px;
}
.cargosCalculator .propmtButton{
	position: relative;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    border: 1px solid #c6c6c6;
    border-radius: 50%;
    line-height: 23px;
    font-size: 15px;
    color: #c6c6c6;
    text-align: center;
    font-weight: 500;
    transition-property: color, border-color, background-color;
    transition-duration: 0.5s;
    cursor: pointer;	
}
.cargosCalculator .propmtButton:hover{
	color: white;
    border-color: #ffcc0e;
    background-color: #ffcc0e;	
}
.cargosCalculator .propmtButton{
 //   animation-name: pulsatingPrompButton;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-direction: alternate;	
}
@keyframes pulsatingPrompButton{
	from{
		transform: scale(0.8);
	}to{
		transform: scale(1.4);
	}
}
.cargosCalculator .propmtButton:hover{
	animation-name: none;
}
.cargosCalculator .propmtButton::before{
    display: block;
    content: '?';	
}
.cargosCalculator .propmtButton .servicePromptWrapper{
    position: absolute;
    width: 200px;
    bottom: 0px;
    left: -155px;
    padding-bottom: 48px;
    transition-property: opacity, visibility, transform;
    transition-duration: 0.5s;
    opacity: 0;
    visibility: hidden;
    transform: rotateY(-90deg) rotateZ(-90deg);	
}
.cargosCalculator .propmtButton:hover .servicePromptWrapper{
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg) rotateZ(0deg);
}
.cargosCalculator .servicePrompt{
	background-color: #f4d150;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    padding: 24px 8px;
    color: #333333;
    border-radius: 8px;
    cursor: auto;	
}
.cargosCalculator .servicePrompt a{
	text-decoration: underline;
    font-weight: 700;
    cursor: pointer;	
}
/*-- Попапы подсказок завершение --*/
/*-- Корректировка стилей --*/

.calculations .mainCalculatorInputs{
	width: auto;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;

}
.inputData.mainCalculatorInputs .optionBlock,
.inputData.customsPayments .optionBlock{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.inputData.mainCalculatorInputs .optionBlock > *:nth-of-type(2),
.inputData.customsPayments .optionBlock > *:nth-of-type(2){
	width: 290px;
	flex-shrink: 0;
}
.inputData.mainCalculatorInputs .littleTitle,
.inputData.customsPayments .littleTitle{
	margin-bottom: 0;
	margin-right: 15px;
}
.simpleLinks::after{
	display: block;
	content: '';
	margin-left: 10px;
	font-size: 16px;
	font-weight: 700;
}
.cargosCalculator > .mainElement > .title + .inputData .optionBlock .littleTitle{
	display: none;
}
.popup.customsPayments{
	width: auto;
	max-width: 550px;
}
.cargosCalculator .mainElement{
//	width: 800px;
	width: 900px;
}
.inputData.mainCalculatorInputs .pseudoCheckbox .pseudoCheckboxLabel{
	margin-left: 0;
}
.inputData.mainCalculatorInputs .pseudoCheckbox{
	justify-content: space-between;
	width: 100%;
}
.inputData.mainCalculatorInputs .pseudoCheckboxElement{
	margin-right: 150px;
}
/*-- Корректировка стилей завершение --*/




/*-- Алапимвеые стили разрабочика --*/
@media (max-height: 900px){
	.pupupWrapper{
		align-items: flex-start;
	}
}
/*-- Алапимвеые стили разрабочика завершение--*/

/*-- Адаптивные стили дополнительные --*/
/*@media (max-width: 450px) {
		.mainWidth {
		width: 100%;
	}
	h2 {
		font-size: 20px;

	}
	.calculations h2 {
		margin-bottom: 5px;
		margin-top: 5px;
	}
	.secondTitle {
		font-size: 29px;
		margin-top: 50px;
	}
	.calculations {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: flex-start;
		margin-top: 0px;
	}
	.calculations .inputData {
		width: 100%;
		padding: 0px 10px 10px 10px;
	}
	.calculations .results {
		padding: 20px 10px 10px 10px;
		margin-left: 0px;
	}
	.littleTitle {
		font-weight: 700;
		font-size: 12px;
	}
	.pseudoInput {
		width: 100%;
		height: 40px;
		box-sizing: border-box;
		position: relative;
		font-weight: 300;
		font-size: 12px;
	-webkit-user-select: initial;
		-khtml-user-select: initial;
		-moz-user-select: initial;
		-ms-user-select: initial;
		user-select: initial;
	}
	.pseudoInput .pseudoOptions {
		background-color: white;
		display: none;
		max-height: 350px;
		overflow-y: scroll;
	} 
	.buttonTypeA {
		height: 46px;
		line-height: 46px;
	}
	.inputData .optionBlock {
		margin-top: 10px;
		position: relative;
	}
	.totalTitle {
		font-size: 16px;	
	}

	.resultValue {
		font-weight: 700;
		font-size: 16px;
		margin-top: 0px;
	}
	.resultsList > li:nth-of-type(1n + 2) {
		margin-top: 10px;
	}
	.klaipedaAdditPrice {
		margin-left: 0px;
		font-size: 12px;
	}
	.goodLuck {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		padding-top: 30px;
	}
	.calculatorsMenuWrapper.topMenu{
		display: none;
	}
	.calculatorsMenuWrapper.bottomMenu{
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
	}
	body.cargosCalculator .calculatorsMenuWrapper.bottomMenu .calculatorsMenu > li{
		float: none;
	}
	body.cargosCalculator .calculatorsMenuWrapper.bottomMenu .calculatorsMenu > li:nth-of-type(1){
		display: none;
	}
	body.AGCalculator .calculatorsMenuWrapper.bottomMenu .calculatorsMenu > li:nth-of-type(2){
		display: none;
	}
	.calculatorsMenu > li > a{
		background-color: #efda02;
		padding: 0 20px;
		line-height: 2.2em;	

	}*/
}
/*-- Адаптивные стили дополнительные завершение --*/







