/* Minify_CSS_UriRewriter::$debugText

*/

/* own.css */

/* 1  */ .radio-with-images .input-hidden {
/* 2  */     display: none;
/* 3  */ }
/* 4  */
/* 5  */ .radio-with-images input[type=radio]:checked + label {
/* 6  */     border: 2px solid #2dae9a;
/* 7  */     box-shadow: 1px 5px 16px black;
/* 8  */ }
/* 9  */
/* 10 */ .radio-with-images{
/* 11 */     display: flex;
/* 12 */     flex-wrap: wrap;
/* 13 */     gap: 20px;
/* 14 */ }
/* 15 */
/* 16 */ .radio-with-images label{
/* 17 */     display: flex;
/* 18 */     flex-direction: column;
/* 19 */     border: 1px solid black;
/* 20 */     padding: 20px;
/* 21 */     border-radius: 10px;
/* 22 */     cursor: pointer;
/* 23 */ }
/* 24 */
/* 25 */ .radio-with-images label br{
/* 26 */     display: none !important;
/* 27 */ }
/* 28 */
/* 29 */ .radio-with-images label img{
/* 30 */     margin: 0 !important;
/* 31 */     width: 100%;
/* 32 */     max-width: none !important;
/* 33 */     aspect-ratio: 1;
/* 34 */     object-fit: cover;
/* 35 */ }
/* 36 */
/* 37 */ .radio-with-images label img.object-fit-contain{
/* 38 */     object-fit: contain !important;
/* 39 */ }
/* 40 */
/* 41 */ .radio-with-images >p{
/* 42 */     width: calc(25% - 20px);
/* 43 */ }
/* 44 */
/* 45 */ .radio-with-images .radio-title{
/* 46 */     border-top: 1px solid black;
/* 47 */     text-align: center;
/* 48 */     padding-top: 10px;
/* 49 */     margin-top: 15px;
/* 50 */     height: 80px;

/* own.css */

/* 51 */     display: flex;
/* 52 */     justify-content: center;
/* 53 */     align-items: center;
/* 54 */     font-size: 15px;
/* 55 */ }
/* 56 */
/* 57 */ @media only screen and (max-width: 991px){
/* 58 */     .radio-with-images >p{
/* 59 */         width: calc(50% - 20px);
/* 60 */     }
/* 61 */ }
/* 62 */
/* 63 */ @media only screen and (max-width: 480px){
/* 64 */     .radio-with-images >p{
/* 65 */         width: 100%;
/* 66 */     }
/* 67 */ }
