#banner {
    max-width: 100%;
    width: 100%;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    outline: 0;
}

/* Modal Content */
.modal-content {
    background-color: transparent;
    padding: 12px;
    position: fixed;
    max-width: 100rem;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.modal-content > img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

html
{
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif;
}

html.accessibility_zoom
{
    font-size: 70%;
}

strong
{
    font-weight: bold;
}

#pag
{
    position: relative;
}

img, svg
{
    max-width: 100%;
    max-height: 100%;
}

.logo
{
    cursor: pointer;
}

#accessibility_bar
{
    background-color: #303138;
    padding: 1rem 0rem;
    position: relative;
    z-index: 70;
}
#accessibility_bar .central
{
    display: flex;
    align-items: center;
    max-width: 139rem;
}
#accessibility_bar .accessibility_items
{
    display: flex;
    align-items: center;
}
#accessibility_bar .accessibility_items li
{
    margin-left: 4rem;
}
#accessibility_bar .accessibility_items li.font_size_down
{
    margin-left: 2rem;
}
#accessibility_bar .accessibility_items li a
{
    color: #fff;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
#accessibility_bar .accessibility_items li a i
{
    font-size: 2.8rem;
    margin-right: 0.5rem;
}

#accessibility_bar .accessibility_shortcuts
{
    display: flex;
    margin-right: auto;
}
#accessibility_bar .accessibility_shortcuts li
{
    margin-right: 2rem;
}
#accessibility_bar .accessibility_shortcuts li a
{
    color: #fff;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

#header_bottom .logo
{
    cursor: pointer;
    position: relative;
    padding: 2.5rem 0rem;
    z-index: 60;
    display: block;
    width: 20rem;
}

#header_bottom .logo img
{
    width: 100%;
}

#header_bottom
{
    position: relative;
    
    background-color: #013B6B;
    
    width: 100%;
    
    padding: 2rem 0rem 0rem;
}

#header_bottom::after
{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1.2rem;
    background-color: #00B9CE;
    top: 100%;
    pointer-events: none;
    z-index: 40;
}

.central
{
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 125rem;
    width: 100%;
}

#header_bottom .central
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header_bottom .responsive_block
{
    display: flex;
}

#site_menu
{
    display: flex;
    justify-content: space-around;
}
#site_menu > li > a
{
    display: flex;
    padding: 5.8rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    
    color: #FFF;
    transition: 0.5s ease-in-out;
    position: relative;
}
#site_menu > li:hover > a,
#site_menu > li:focus-within > a
{
    color: #00B9CE;
}
#site_menu > li:hover > a .active_detail,
#site_menu > li.active > a .active_detail,
#site_menu > li:focus-within > a .active_detail
{
    position: absolute;
    display: block;
    width: calc(100% + 6rem);
    left: -3rem;
    bottom: -1.2rem;
    height: 1.2rem;
    background-color: #013B6B;
    z-index: 50;
}
#site_menu > li:hover > a .active_detail::after,
#site_menu > li.active > a .active_detail::after,
#site_menu > li:focus-within > a .active_detail::after
{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border-top: 0.6rem solid #013B6B;
    border-left: 0.9rem solid transparent;
    border-right: 0.9rem solid transparent;
    z-index: 50;
}
#site_menu > li:hover > a .active_detail::before
{
    content: '';
    position: absolute;
    display: block;
    width: 150%;
    transform: translateX(-50%);
    height: 6rem;
    left: 50%;
    bottom: 0;
    z-index: 40;
    background-color: transparent;
}
#site_menu .dropdown_menu
{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 20;
    height: 0;
    overflow: hidden;
    background-color: #FFFFFF;
}
#site_menu li:hover .dropdown_menu,
#site_menu li:focus-within .dropdown_menu
{
    height: auto;
}
#site_menu .dropdown_menu .dropdown
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 3.8rem 0rem;
    width: 100%;
}
#site_menu .dropdown_menu .dropdown li
{
    width: 19%;
    margin-left: 1%;
    margin-bottom: 2rem;

}
#site_menu .dropdown_menu .dropdown li:nth-child(5n+1)
{
    margin-left: 0rem;
}
#site_menu .dropdown_menu .dropdown li a
{
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 800;
    color: #013B6B;
    text-transform: uppercase;
    padding: 0.4rem;
    transition: cubic-bezier(0.220, 0.915, 0.215, 0.910) 0.5s;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8rem;
}
#site_menu .dropdown_menu .dropdown li:hover a
{
    color: #00B9CE;
}

.header_right
{
    display: flex;
    align-items: center;
    margin-left: 1.2rem;
}
.header_search
{
   padding: 4.6rem 0rem; 
}
.search_button i svg
{
   width: 1.7rem;
   height: 1.7rem;
}
.search_button
{
    background-color: #FFF;
    padding: 1rem;
    margin-right: 1.6rem;
    cursor: pointer;
    transition: ease-in-out 0.5s;
    position: relative;
    z-index: 60;
}
.header_search.active .search_button,
.search_button:hover,
.search_button:focus-within
{
    background-color: #00B9CE;
}
.header_search:hover .dropdown_menu,
.header_search:focus-within .dropdown_menu
{
    height: auto;
}
.dropdown_search
{
    overflow: hidden;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #F5F5F5;
    z-index: 40;
    transition: ease-in-out 0.5s;
}
.dropdown_search 
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_search.active .dropdown_search,
.header_search:focus-within .dropdown_search
{
    height: 14rem;
}
.header_search.active .active_detail,
.header_search:focus-within .active_detail
{
    position: absolute;
    display: block;
    width: 3.7rem;
    bottom: -1.2rem;
    height: 5rem;
    background-color: #013B6B;
    z-index: 50;
    transition: ease-in-out 0.5s;
}
.header_search.active .active_detail::after,
.header_search:focus-within .active_detail::after
{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    z-index: 50;
    border-top: 0.6rem solid #013B6B;
    border-left: 0.9rem solid transparent;
    border-right: 0.9rem solid transparent;
}
#responsive_button
{
    margin-right: 1rem;
    display: none;
    z-index: 1000;
    position: relative;
    
    height: 4rem;
    width: 4rem;
}
#responsive_button input
{
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
#responsive_button label
{
    width: 100%;
    height: 0.5rem;
    background-color: #FFF;
    position: absolute;
    cursor: pointer;
    border-radius: 1rem;
    right: 0;
    top: 50%;
    transition: all cubic-bezier(0.215, 0.610, 0.355, 1) 0.35s;
}
#responsive_button label::before,
#responsive_button label::after
{
    display: block;
    content: '';
    width: 100%;
    height: 0.5rem;
    border-radius: 1rem;
    background-color: #FFF;
    position: absolute;
    cursor: pointer;
    transition: all cubic-bezier(0.215, 0.610, 0.355, 1) 0.75s;
}
#responsive_button label::before
{
    right: 0;
    top: 1.5rem;
}
#responsive_button label::after
{
    right: 0;
    top: -1.5rem;
}
#responsive_button input:checked ~ label::before
{
    transform: rotateZ(45deg);
    top: 50%;
}
#responsive_button input:checked ~ label::after
{
    transform: rotateZ(-45deg);
    top: 50%;
}
#responsive_button input:checked ~ label
{
    background-color: transparent;
}
.search
{
    max-width: 63rem;
    width: 100%;
    height: 5rem;
    display: flex;
}

.search input
{
    flex: 1;
    width: 100%;
    height: 100%;
    padding-left: 1.5rem;
    display: block;
    background-color: #FFF;
}

.search input::placeholder
{
    font-size: 1.4rem;
}

.search button
{
    color: #FFF;
    font-size: 1.4rem;
    padding: 1.5rem 5.5rem;
    transition: 0.5s ease;
    background-color: #013B6B;
    max-width: 17rem;
}

.search button:hover
{
    background-color: #00B9CE;
    cursor: pointer;
}

footer
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: #013B6B;
}
.footer_top .central
{
    display: flex;
    padding: 3rem 1rem;
    max-width: 105rem;
}

.footer_left
{
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 20rem;
}
.footer_left .logo
{
    margin-bottom: 3.5rem;
}
.footer_left .itajai_logo
{
    width: 16rem;
}


.footer_right
{
    min-width: 20rem;

    padding-left: 5rem;
    display: flex;
    flex-direction: column;
}
.footer_right .footer_info
{
    display: flex;
    padding-left: 2rem;
    width: 100%;
}
.footer_address_cnpj
{
    width: 33.3%;
}
.footer_address
{
    display: flex;
    flex-direction: column;
    margin-right: 3rem;
}
.footer_address span
{
    font-size: 1.4rem;
    color: #FFF;
    line-height: 2.2rem;
    transition: ease-in-out 0.5s;
}
.footer_address:hover span
{
    color: #00B9CE;
}
.footer_cnpj
{
    display: flex;
    flex-direction: column;
}
.footer_cnpj span
{
    font-size: 1.4rem;
    color: #FFF;
    line-height: 2.2rem;
    transition: ease-in-out 0.5s;
}
.footer_cnpj .footer_title
{
    font-size: 1.4rem;
    color: #FFF;
    line-height: 2.2rem;
    transition: ease-in-out 0.5s;
    margin-bottom: 1rem;
}
.footer_cnpj:hover span
{
    color: #00B9CE;
}
.footer_contact
{
    display: flex;
    flex-direction: column;
    width: 33.3%
}
.footer_contact .contact_title
{
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.2rem;
    color: #FFF;
}
.footer_contact a
{
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: #FFF;
    transition: ease-in-out 0.5s;
}
.footer_contact a:hover
{
    color: #00B9CE;
}
.footer_right .social-network
{
    padding: 0.5rem 1rem;
}

.clear
{
    clear: both;
}

.footer_menu
{
    padding-top: 2rem;
    width: 100%;
}
.footer_menu .footer_menu_block
{
    width: 33%;
    float: left;
    display: flex;
    flex-direction: column;
}
.footer_menu .footer_menu_item
{
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.footer_menu .footer_menu_item > a
{
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 2.2rem;
    color: #FFF;
    text-transform: uppercase;
    transition: 0.5s ease;
    margin-bottom: 1rem;
}
.footer_menu .footer_menu_item > a:hover
{
    color: #00B9CE;
}
.footer_menu .footer_menu_item > .submenus
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.footer_menu .footer_menu_item > .submenus a
{
    font-size: 1.4rem;
    line-height: 2rem;
    color: #FFF;
    transition: 0.5s ease;
}
.footer_menu .footer_menu_item > .submenus a:hover
{
    color: #00B9CE;
}


.footer_credits
{
    width: 100%;
}
.footer_credits .central
{
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #FFF;
    max-width: 125rem;
}
.footer_credits .rights
{
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #FFF;
}
.footer_credits .developer a
{
    font-size: 1rem;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_credits .developer a span
{
    margin-right: 0.5rem;
}

.port_map
{
    background-color: #F5F5F5;
    overflow: hidden;
}
.port_map .port_map_internal
{
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    perspective: 1000;
    -webkit-perspective: 1000;
    position: relative;
    max-height: 640px;
    overflow-y: hidden;
    overflow-x: hidden;
    cursor: grab;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #8F8F8F;
    overscroll-behavior: none;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    touch-action: none;
}
.port_map_internal::-webkit-scrollbar
{
    width: 20px;
}
.port_map_internal::-webkit-scrollbar-thumb
{
    background-color: #8F8F8F;
}
.port_map_internal::-webkit-scrollbar-button
{
    width: 0rem;
    height: 0rem;
}
.port_map_internal::-webkit-scrollbar-track
{
    background-color: #F5F5F5;
}

.port_map_internal .port_map_image
{
    pointer-events: none;
    width: 1920px;
    height: 100%;
    max-width: unset;
    object-fit: contain;
    object-position: center;
}

.port_map .map_point svg
{
    max-width: unset;
}
.port_map .map_point svg path
{
    cursor: pointer;
    transition: ease-in-out 0.2s;
}
.port_map .map_point svg path:hover
{
    fill: #013B6B;
}
.port_map .map_point.point_selected svg path
{
    fill: #013B6B;
}
.port_map .map_point .point_title
{
    position: absolute;
    color: #FFF;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    pointer-events: none;
}
.port_map .map_point .point_info
{
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    
    width: 0;
    overflow: hidden;
    z-index: 1;
    
    transition: ease-in-out 0.5s;
    cursor: auto;
}
.port_map .map_point.point_selected .point_info
{
    width: 34rem;
    z-index: 10;
}
.port_map .map_point:focus-within .point_info
{
    width: 34rem;
    z-index: 12;
}
.port_map .map_point .point_info .container
{
    padding: 0.3rem 2.2rem 0.9rem;
    margin-left: 1rem;

    background-color: #F5F5F5EE;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 34rem;
}
.port_map .map_point .point_info .container::before
{
    content: '';
    position: absolute;
    left: 0rem;
    top: 50%;
    transform: translateY(-50%);
    
    width: 0;
    height: 0;
    
    border-right: 10px solid #F5F5F5EE;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.port_map .map_point .point_name
{
    padding: 0.3rem 0.7rem;

    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 900;
    
    width: 100%;
    
    color: #013B6B;
    border-bottom: 1px solid #707070;
}
.port_map .map_point .point_description
{
    padding: 0.5rem 0.7rem;

    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6rem;
    
    width: 100%;
    
    color: #5B5B5B;
}
.port_map .map_point .point_link
{
    padding: 0.5rem 0.7rem;

    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 900;
    word-break: break-all;

    color: #013B6B;
}

.port_map .point_a
{
    position: absolute;
    left: 585px;
    top: 350px;
}
.port_map .point_a .point_title
{
    left: 95px;
    top: 125px;
}

.port_map .point_b
{
    position: absolute;
    left: 885px;
    top: 565px;
}
.port_map .point_b .point_title
{
    left: 32px;
    top: 80px;
}

.port_map .point_c
{
    position: absolute;
    left: 1009px;
    top: 598px;
}
.port_map .point_c .point_title
{
    left: 13px;
    top: 22px;
}

.port_map .point_d
{
    position: absolute;
    left: 972px;
    top: 677.5px;
}
.port_map .point_d .point_title
{
    left: 25px;
    top: 25px;
}

.port_map .point_e
{
    position: absolute;
    left: 943px;
    top: 734.8px;
}
.port_map .point_e .point_title
{
    left: 14px;
    top: 5px;
}

.port_map .point_f
{
    position: absolute;
    left: 735.5px;
    top: 741px;
}
.port_map .point_f .point_title
{
    left: 8px;
    top: 20px;
}

.port_map .point_g
{
    position: absolute;
    left: 819px;
    top: 913px;
}
.port_map .point_g .point_title
{
    left: 1px;
    top: 4px;
}

.port_map .point_h
{
    position: absolute;
    left: 505px;
    top: 1205px;
}
.port_map .point_h .point_title
{
    left: 35px;
    top: 12px;
}

.port_map .point_i
{
    position: absolute;
    left: 631.5px;
    top: 1285.5px;
}
.port_map .point_i .point_title
{
    left: 19px;
    top: 13px;
}

.port_map_caption
{
    position: absolute;

    left: 300px;
    top: 56px;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;

    padding: 3px 0;
    width: 100%;
    max-width: 330px;
    cursor: auto;
    z-index: 30;
    transition: ease-in-out 0.7s;
} 

.port_map_caption .responsive_block
{
    display: block;
    width: 100%;
    height: 0;
    background-color: #F5F5F5;
    z-index: 30;
    padding: 0rem;
} 

.port_map_caption .responsive_block i svg
{
    transition: ease-in-out 0.5s;
} 
.port_map_caption.menu_active .responsive_block i svg
{
    transform: rotateZ(180deg);
} 

.port_map_caption li
{
    padding: 0 30px;
    position: relative;
    transition: ease-in-out 0.5s;
} 
.port_map_caption li.point_selected,
.port_map_caption li:hover,
.port_map_caption li:focus-within
{
    background-color: #013B6B;
} 
.port_map_caption li.point_selected::before,
.port_map_caption li:hover::before,
.port_map_caption li:focus-within::before
{
    content: '';

    display: block;
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFF;
    transition: ease-in-out 0.5s;
} 
.port_map_caption li button
{
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;

    color: #013B6B;
    border-bottom: 3px solid #8F8F8F;

    display: block;
    width: 100%;
    padding: 13px 0 11px;
    cursor: pointer;
    outline: none;
    transition: ease-in-out 0.5s;
} 
.port_map_caption li.point_selected button,
.port_map_caption li:hover button,
.port_map_caption li:focus-within button
{
    color: #FFF;
    border-bottom: 3px solid #00B9CE;
}
.port_map_caption li:last-child button
{
    border-bottom: none;
} 
   
/*SOCIAL NETWORK**********************************************************************/
.social-network
{
    display: flex;
    justify-content: space-between;
}

.social-network a
{
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    height: 2.3rem;
    width: 2.3rem;
    margin-right: 1rem;
}

.social-network a:last-child
{
    margin-right: 0;
}

.social-network a svg *
{
    transition: 0.5s ease;
}

.social-network a svg .fundo
{
    fill: #013B6B !important;
}

.social-network a:hover svg *
{
    fill: #00B9CE;   
}


.news_list
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news_list li
{
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 50rem;
    min-width: 30rem;
    margin: 0rem 1rem 6rem;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.1);
}


.news_list li a
{
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news_list li .news_image
{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 66.66%;
}
.news_list li .news_image::after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1rem;
    background-color: #00B9CE;
}

.news_list li .news_image img
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.news_list li .news_info
{
    flex: 1;
    width: 100%;
    position: relative;
    background-color: #FFF;
    padding: 0.7rem 2.7rem 2.5rem;

    display: flex;
    flex-direction: column;
}

.news_list li .news_info .news_title
{
    font-size: 2.2rem;
    line-height: 2.4rem;
    color: #013B6B;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.4rem;
}

.news_list li .news_info .news_date
{
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    color: #00B9CE;
    display: block;
}

.news_list li .news_info .news_caption
{
    font-size: 1.6rem;
    line-height: 2rem;
    color: #757575;
}

.news_list li .read_more
{
    background-color: #013B6B;
    color: #FFF;
    width: 100%;
    height: 3.9rem;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 500;
    transition: 0.5s ease;
}

.news_list li:hover .read_more
{
    background-color: #00B9CE;
    cursor: pointer;
}

/*LOADING**********************************************************************/
.loading
{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    top: 0;
    z-index: 50;
}

.loading .loader
{
    display: inline-block;
    left: 50%;    
    position: relative;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading p
{
    color: #fff;
    font-size: 1.8rem;
}

.lds-default {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-default div {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 29px;
    left: 53px;
}
.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 18px;
    left: 50px;
}
.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 9px;
    left: 41px;
}
.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 6px;
    left: 29px;
}
.lds-default div:nth-child(5) {
    animation-delay: -0.6s;
    top: 9px;
    left: 18px;
}
.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 18px;
    left: 9px;
}
.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 29px;
    left: 6px;
}
.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 41px;
    left: 9px;
}
.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 50px;
    left: 18px;
}
.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 53px;
    left: 29px;
}
.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 50px;
    left: 41px;
}
.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 41px;
    left: 50px;
}
@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}