body {
    font-family: Helvetica, sans-serif;
    background: #23242a;
    min-height: 150vh;
    
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}





.mainBlock {
    display:flex; 
    flex-direction: column;
    
}
h1 {
    margin: 0;
    color: #ffd4d4;
    font-weight: bold;
}

h2 {
    margin: 0;
    color: #ffd4d4;
    font-weight: bold;
}

.price {
    margin-top: 2em;
    opacity: 0;
    display: none;
    z-index: 1;
}

.price-show {
    display: block;
    opacity: 1;
    transition: all 1.5s;
    
}

.block {
     display: flex;
     flex-direction: column;
     margin-top: 4em;
     height: 13em;
}


.title {
    opacity: 0;
    transform: translateY(15px);
}


.title.element-show {
    opacity: 1;
    transition: all 1.5s;
    transform: translateY(0%);
}



*,
*:before,
*:after {
    box-sizing: border-box;
}

.dropdown {
    min-width: 15em;
    position: relative;
    margin: 2em;
}

.dropdown:first-child {
    margin: 2em 0;
}

.dropdown:last-child {
    margin: 2em 0;
}


.dropdown * {
    box-sizing: border-box;
}


.select {
    background: #2a2f3b;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.5em;
    padding: 1em;
    cursor: pointer;
    transition: background 0.3s;    
}

.select-calc {

    margin-top: 4.5em;
    justify-content: center;
}

.select-clicked {
    border: 2px #26489a solid;
    box-shadow: 0 0 0.8em #26489a;
}

.select:hover {
    background: #323741;
}

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: 0.3s;
}

.caret-rotate {
    transform: rotate(180deg);
}

.menu {
    list-style: none;
    padding: 0.2em 0.5em;
    background: #323741;
    border: 1px #363a43 solid;
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    border-radius: 0.5em;
    color: #9fa5b5;
    position: absolute;
    top: 3em;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
    z-index: 1;
    transition: 0.2s;
}

.menu li {
    padding: 0.7em 0.5em;
    margin: 0.3em 0;
    border-radius: 0.5em;
    cursor: pointer;
}

.menu li:hover {
    background: #2a2d35;
}

.menu li.chosen {
    background: #2a2d35;
}


.header {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
}

.logo {
    height: 100%;
    width: 40%;
    background-image: url(img/Logo1.png);
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: left center;
}


.swal-button {
    background-color: rgb(242,145,24);
}

.swal-button:hover {
    background-color: rgb(242,145,24);
}

.swal-button:not([disabled]):hover {
    background-color: rgb(242,145,24);
}

.swal-icon--success__ring {

    border: 4px solid rgb(242,145,24);

}
.swal-icon--success__line {
    background-color: rgb(242,145,24);
}

.swal-button:focus {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(242, 185, 115);
}


.swal-text {
    font-size: 19px;
    text-align: center;
    line-height: 1.4em;
}

.active {
    background: #23242a;
}

.menu-open {
    display: block;
    opacity: 1;
}


.liClass { 
    display: flex;
    justify-content: space-between;
}



