.boat-editor .editor-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 20px;
}

.boat-editor .btnDownload {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.boat-editor .editor-menu {
    min-width: 120px;
    max-width: 240px;
    text-align: center;
    flex: 1;
}

.boat-editor .editor-menu .btn {
    background: #003366;
    color: white;
    border-radius: 40px;
    font-size: 2em;
    line-height: 44px;
    width: 40px;
    height: 40px;
    padding: 0;
    outline: none;
}

.boat-editor .editor-menu .type-item {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.boat-editor .editor-menu .type-item span {
    display: inline-block;
    padding: 0 5px;
    width: 30px;
}

.boat-editor .editor-footer {
    text-align: center;
    position: relative;
    margin-left: 20px;
}

.boat-editor .editor-footer .btn {
}

.boat-wrapper {
    position: relative;
    width: 400px;
    height: 489px;
    pointer-events: none;
    transform: translate3d(-10px, 0, 0);
}

.boat-wrapper > div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation-duration: 0.5s;
    animation-name: pulse;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    z-index: 1;
}

.boat-wrapper .hull {
    z-index: 2;
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

/* CUSTOMIZE  BOAT PARTS */
.boat-editor .hull_4 .sail_7 {
    transform: translate3d(0, -10px, 0);
}

.boat-editor .hull_3 .sail_3 {
    transform: translate3d(0, 5px, 0);
}

.boat-editor .hull_5 .sail_3,
.boat-editor .hull_6 .sail_3,
.boat-editor .hull_7 .sail_3 {
    transform: translate3d(0, 5px, 0);
}

.boat-editor .hull_2 .sail_1 {
    transform: translate3d(0, -3px, 0);
}

.boat-editor .hull_6 .sail_2 {
    transform: translate3d(0, 10px, 0);
}

.boat-editor .hull_1 .keel_7 {
    transform: translate3d(0, -10px, 0);
}

.boat-editor .hull_7 .keel_2 {
    transform: translate3d(0, 5px, 0);
}

.boat-editor .hull_3 .keel_4 {
    transform: translate3d(0, -10px, 0);
}

.boat-editor .hull_7 .keel_6 {
    transform: translate3d(0, 5px, 0);
}

.boat-editor .hull_7 .keel_1 {
    transform: scale(0.8) translate3d(-9px, 41px, 0);
}

.boat-editor .hull_2 .keel_7,
.boat-editor .hull_2 .keel_5 {
    transform: translate3d(0, -8px, 0);
}
