 /* 
        font-family: "SoleSans", Arial, Helvetica, sans-serif;
        font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
        font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
        font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
        */


 .modal_container {
     position: fixed;
     background: #415A77;
     z-index: 15;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     align-items: center;
 }


 .modal_content {
     display: flex;
     flex-direction: row;
     justify-content: flex-start;
     align-items: flex-start;
     position: relative;
 }

 .modal_occhiello {
     color: var(--text-color);
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     font-size: .7rem;
     font-style: normal;
     font-weight: 400;
     line-height: normal;
     text-align: left;
     padding-bottom: 10px;
 }

 .modal_close {
     position: absolute;
     top: 15px;
     right: 20px;
     cursor: pointer;
     width: fit-content;
 }

 .modal_img {
     width: 90px;
     height: 90px;
     cursor: pointer;
 }

 .modal_img img {
     width: 100%;
     height: auto;
 }

 .modal_testi {
     padding-left: 15px;
 }

 .modal_titolo {
     color: var(--text-color);
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     font-size: 1.3rem;
     font-style: normal;
     font-weight: 600;
     line-height: 1rem;
     text-align: left;
     padding-bottom: 5px;
 }

 .modal_sommario {
     color: var(--text-color);
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     font-size: .8rem;
     font-style: normal;
     font-weight: 400;
     line-height: normal;
     text-align: left;
 }

 .modal_container a:link {
     text-decoration: none;
     color: var(--text-color);
 }

 .modal_container a:visited {
     text-decoration: none;
     color: var(--text-color);
 }

 .modal_container a:hover {
     text-decoration: underline;
     color: var(--text-color);
 }

 .modal_container a:active {
     text-decoration: underline;
     color: var(--text-color);
 }


 @media only screen and (min-width: 481px) {
     .modal_container {
         top: 50%;
         transform: translateY(-50%);
         right: -500px;
         width: 400px;
         border-radius: 14px 0 0 14px;
         transition: right 0.5s ease-in-out;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
         padding: 15px 10px 0 20px;
     }

     .modal_container.modal_is_visible {
         right: 0;
     }
 }

 @media only screen and (max-width: 480px) {
     .modal_container {
         bottom: -200px;
         left: 0;
         width: 100%;
         height: 132px;
         border-radius: 14px 14px 0 0;
         transition: bottom 0.5s ease-in-out;
         box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
         padding: 20px;
     }

     .modal_container.modal_is_visible {
         bottom: 0;
     }
 }