@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";.button-image{width:fit-content;min-width:var(--button-height);gap:0}.button-image p{text-align:left;padding:0 var(--button-gap)}.button-image_width100{width:100%}.button-image_atStart{justify-content:flex-start}.button-image img{width:var(--button-img);height:var(--button-img)}@media screen and (width<=400px){.button-image_phoneTextHide p{display:none}}:root{--modal-width-max:90vw;--modal-height-max:80vh}@media screen and (width<=900px){:root{--modal-width-max:96vw;--modal-height-max:60vh}}.modal-wrapper{width:100%;height:100%;padding:var(--gap-small);background-color:var(--bg-transparent);cursor:pointer;z-index:var(--z-modal);justify-content:center;align-items:center;display:flex;position:fixed;top:0;left:0}dialog.modal{max-width:var(--modal-width-max);max-height:var(--modal-height-max);box-sizing:content-box;background-color:var(--bg-secondary);border:1px solid var(--border-primary);border-radius:var(--border-radius);cursor:default;position:relative}#modal__close-button{height:var(--button-height);top:0;right:calc(-1 * (var(--button-height) + 8px));position:absolute}@media (hover:hover){.modal-wrapper:hover #modal__close-button{background-color:var(--button-hover)}dialog.modal:hover #modal__close-button{background-color:var(--button-bg)}}@media screen and (width<=900px){#modal__close-button{top:calc(-1 * (var(--button-height) + 8px));right:0}}:root{--h1:24px;--h2:22px;--h3:20px;--h4:18px;--p:16px;--p-small:12px;--text-white:#fff;--text-light:#ffffffe6;--text-gray:#ffffff80;--text-dark:#ffffff4d;--text-black:#000;--text-red:#d60027;--text-link:#8b81e6;--text-input-label:#b6b6b6}@media screen and (width<=900px){:root{--h1:22px;--h2:20px;--h3:16px;--h4:15px;--p:14px}}*{color:var(--text-white);font-family:Montserrat,sans-serif;font-size:var(--p);word-break:break-word;font-weight:400}h1,.h1{font-size:var(--h1);font-weight:700}h2,.h2{font-size:var(--h2);font-weight:700}h3,.h3{font-size:var(--h3);font-weight:600}h4,.h4{font-size:var(--h4);font-weight:500}p,.p{font-size:var(--p);white-space:pre-wrap;font-weight:400}small,.small{font-size:var(--p-small);font-weight:300}strong,.strong{font-weight:600}label{font-size:var(--p)}.text-white{color:var(--text-white)}.text-light{color:var(--text-light)}.text-gray{color:var(--text-gray)}.text-dark{color:var(--text-dark)}.text-red{color:var(--text-red)}.text-cut{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.text-preview{color:#0000;background-color:var(--bg-primary);width:fit-content}:root{--img-small:12px}a{cursor:pointer;text-decoration:none}.text-link{font-size:var(--p);color:var(--text-link);cursor:pointer}@media (hover:hover){.text-link:hover,.text-link:focus-visible{text-decoration:underline}}@media (hover:none){.text-link{text-decoration:underline}}.link-image{cursor:help;position:relative}.link-image:after{content:"";width:var(--img-small);height:var(--img-small);opacity:.5;background-image:url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M19%2019H5V5H10V3H5C3.89%203%203%203.9%203%205V19C3%2020.1%203.89%2021%205%2021H19C20.1%2021%2021%2020.1%2021%2019V14H19V19ZM14%203V5H17.59L7.76%2014.83L9.17%2016.24L19%206.41V10H21V3H14Z'%20fill='white'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:contain;position:absolute;top:50%;right:-16px;transform:translateY(-50%)}.image-gray{opacity:.5}:root{--button-bg:#322f39;--button-hover:#55515c;--button-bg-green:#006500;--button-hover-green:#008810;--button-bg-red:#7a141a;--button-hover-red:#a91922;--button-bg-tp:#fff0;--button-hover-tp:#ffffff1f;--button-bg-clicked:#4b4753;--button-bg-disabled:#2e2c35;--button-height:36px;--button-img:24px;--button-height-nav:36px;--button-img-nav:24px;--button-height-big:48px;--button-img-big:36px;--button-padding:4px;--button-gap:4px}@media screen and (width<=900px){:root{--button-height-nav:30px;--button-img-nav:20px}}button{width:min(200px,100%);min-height:var(--button-height);padding:var(--button-padding);justify-content:center;align-items:center;gap:var(--button-gap);color:var(--text-white);font-size:var(--p);border-radius:var(--border-radius);background-color:var(--button-bg);-webkit-user-select:none;user-select:none;cursor:pointer;border:none;outline:none;text-decoration:none;display:flex;overflow:hidden}button.green{background-color:var(--button-bg-green)}button.red{background-color:var(--button-bg-red)}button.tp{background-color:var(--button-bg-tp)}button:disabled{cursor:not-allowed;color:var(--text-dark);background-color:var(--button-bg-disabled)}button:disabled p{color:var(--text-dark)}button:disabled img{opacity:.3}button.clicked{background-color:var(--button-bg-clicked)}@media (hover:hover){button:hover,button:focus-visible{background-color:var(--button-hover)}button.green:hover,button.green:focus-visible{background-color:var(--button-hover-green)}button.red:hover,button.red:focus-visible{background-color:var(--button-hover-red)}button.tp:hover,button.tp:focus-visible{background-color:var(--button-hover-tp)}button:disabled:hover,button:disabled:focus-visible{background-color:var(--button-bg-disabled)}}@media (hover:none){button:active{background-color:var(--button-hover)}button.green:active{background-color:var(--button-hover-green)}button.red:active{background-color:var(--button-hover-red)}button.tp:active{background-color:var(--button-hover-tp)}button:disabled:active{background-color:var(--button-bg-disabled)}}:root{--border-input:#666;--border-input-focus:#1ca02c;--border-input-error:#d60027;--range-thumb:#999}input[type=text]{width:100%;height:var(--button-height);padding:var(--button-padding);color:var(--text-white);font-size:var(--p);background-color:var(--bg-secondary);border:1px solid var(--border-input);border-radius:var(--border-radius);outline:none;text-decoration:none;display:block}textarea{width:100%;height:200px;min-height:var(--button-height);max-height:500px;padding:8px var(--button-padding) var(--button-padding) var(--button-padding);color:var(--text-white);font-size:var(--p);background-color:var(--bg-secondary);border:1px solid var(--border-input);border-radius:var(--border-radius);resize:vertical;outline:none;text-decoration:none;display:block}.textarea-block{width:100%;padding:var(--button-padding);color:var(--text-light);background-color:var(--bg-secondary);border:1px solid var(--border-input);border-radius:var(--border-radius);white-space:pre-wrap;cursor:not-allowed;text-decoration:none}input[type=text]:not(:read-only):focus,textarea:not(:read-only):focus{border:1px solid var(--border-input-focus)}input[type=text]:read-only,textarea:read-only{color:var(--text-gray);cursor:not-allowed}input[type=text]::placeholder{color:var(--text-dark)}input[type=text]:-webkit-autofill{transition:background-color 600000s,color 600000s}input[type=text]:-webkit-autofill:focus{transition:background-color 600000s,color 600000s}input[type=radio]{appearance:none;background-color:#fff;border-radius:50%;width:16px;height:16px;position:relative}input[type=radio]:before{content:"";background-color:var(--bg-secondary);visibility:hidden;border-radius:50%;width:10px;height:10px;position:absolute;top:3px;left:3px}input[type=radio]:checked:before{visibility:visible}:root{--select-item-bg:#322f39;--select-item-hover:#55515c}#page-loading{background-image:url(/assets/waiting-D9xn2E7Y.gif);background-color:var(--bg-transparent);width:100%;height:100%;z-index:var(--z-loading);opacity:0;cursor:wait;background-position:50%;background-repeat:no-repeat;animation:.5s ease-in forwards page-loading-animation;position:fixed;top:0;left:0}@keyframes page-loading-animation{0%{opacity:0}to{opacity:1}}@media screen and (width<=900px){#page-loading{background-size:50%}}body[theme=snow]:before{content:"";width:100%;height:100%;z-index:var(--z-under);opacity:.25;background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/theme-snow/snow.gif);background-size:500px;position:fixed;top:0;left:0}body[theme=snow] section:after{content:"";width:var(--button-img-big);height:var(--button-img-big);background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/theme-snow/hat.png);background-repeat:no-repeat;background-size:contain;position:absolute;top:-18px;right:-13px;rotate:28deg}body[theme=party] section:after{content:"";width:var(--button-img-big);height:var(--button-img-big);background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/theme-party/party-hat.png);background-repeat:no-repeat;background-size:contain;position:absolute;top:-20px;right:-14px;rotate:18deg}body[theme=party] .home__image-AA{content:url("https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/theme-party/Ace_Attorney party.png")}body[bg]{background-position:50%;background-repeat:no-repeat;background-size:cover}body[bg=bg1]{background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/bg1.png)}body[bg=bg2]{background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/bg2.png)}body[bg=bg3]{background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/bg3.png)}body[bg=bg4]{background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/bg4.png)}body[bg=bgSnow]{background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/bgSnow.png)}body[bg=bgParty]{background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/bgParty.png)}body[bg=bgParty2]{background-image:url(https://raw.githubusercontent.com/masstik/hedgehog-rp-assets/main/hedgehog-rp/settings/bgParty2.png)}#theme-canvas{z-index:-1;width:100%;height:100%;position:absolute;top:0;left:0}:root{--bg-primary:#1b1a1f;--bg-secondary:#242328;--bg-transparent:#15151586;--border-primary:#413f46;--border-radius:4px;--gap-small:12px;--gap-medium:20px;--scrollbar-width:6px;--z-under:-1;--z-main:0;--z-over:1;--z-above:2;--z-nav-bg:3;--z-nav-content:4;--z-nav:5;--z-modal:10;--z-loading:100}@media screen and (width<=900px){:root{--scrollbar-width:4px}}*{box-sizing:border-box;scroll-behavior:smooth;--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark;margin:0;padding:0;list-style-type:none;transition:all .2s}::-webkit-scrollbar{width:var(--scrollbar-width)}::-webkit-scrollbar-track{border-radius:var(--border-radius);background-color:#0000}::-webkit-scrollbar-thumb{border-radius:var(--border-radius);background-color:var(--border-primary)}html,body{width:100%;height:100%}body{background-color:var(--bg-primary);justify-content:center;display:flex}#root{gap:20px;padding:0 20px;display:flex}aside{width:calc(200px + var(--gap-small) + var(--scrollbar-width));height:100%;z-index:var(--z-nav-content)}@media screen and (width>=900px){body[bg] aside{width:calc(220px + var(--gap-small) + var(--scrollbar-width))}}article{width:calc(600px + var(--gap-medium) + var(--scrollbar-width));height:100%;padding:var(--gap-medium) var(--gap-medium) var(--gap-medium) 0px;gap:var(--gap-medium);scrollbar-gutter:stable;flex-direction:column;display:flex;overflow:hidden auto}article::-webkit-scrollbar-track{margin:var(--gap-medium) 0}@supports not (-webkit-touch-callout:none){article{overflow-y:overlay}}section{background-color:var(--bg-secondary);border:1px solid var(--border-primary);border-radius:var(--border-radius);width:min(600px,100%);height:auto;padding:var(--gap-small);position:relative}.page-title{width:min(600px,100%);color:var(--text-dark);margin:0 auto}hr{border:none;border-bottom:1px solid var(--border-primary);width:100%}.flex-row{gap:var(--gap-small);flex-direction:row;display:flex}.flex-col{gap:var(--gap-small);flex-direction:column;display:flex}.flex-wrap{flex-wrap:wrap}.border-radius{border-radius:var(--border-radius)}@media screen and (width<=900px){#root{flex-direction:column;align-items:center;width:100%;padding:0}aside{background-color:var(--bg-secondary);border-bottom:1px solid var(--border-primary);width:100%;height:50px;position:fixed;top:0;left:0}article{width:100%;padding:calc(50px + var(--gap-small)) calc(var(--gap-small) - var(--scrollbar-width)) var(--gap-small) var(--gap-small)}article::-webkit-scrollbar-track{margin:calc(50px + var(--gap-small)) 0 var(--gap-small) 0}section{margin:0 auto}.page-title{margin-bottom:calc(-1 * (var(--gap-medium) - var(--gap-small)))}}:root{--button-profile-img:40px}.button-profile{width:100%;height:var(--button-height-big);justify-content:flex-start;display:flex}.button-profile img{width:var(--button-profile-img);height:var(--button-profile-img);background-color:var(--bg-primary);object-fit:cover;border-radius:50%}.button-profile__text{width:calc(100% - var(--button-profile-img) - var(--button-gap) - var(--button-padding));flex-direction:column;display:flex}.button-profile__text p,.button-profile__text small{text-align:left}.button-profile_preview .button-profile__text p,.button-profile_preview .button-profile__text small{color:#0000;background-color:var(--bg-primary);width:fit-content}.button-profile_noPadding{padding-left:0;padding-right:0}.nav-wrapper{width:100%;height:100%;padding:var(--gap-medium) 0;overflow:overlay;-ms-overflow-style:-ms-autohiding-scrollbar;z-index:var(--z-nav)}.nav-wrapper::-webkit-scrollbar-track{margin:var(--gap-medium) 0}nav{gap:var(--gap-small);flex-direction:column;width:200px;display:flex}@media screen and (width>=900px){body[bg] nav{width:calc(100% - var(--gap-small));padding:0 var(--gap-small) var(--gap-small) var(--gap-small);background-color:var(--bg-secondary);border-radius:var(--border-radius);border:1px solid var(--border-primary)}}nav ul{flex-direction:column;display:flex}nav ul li{-webkit-user-select:none;user-select:none}nav ul li button{height:var(--button-height-nav)}nav ul li a{width:100%;height:var(--button-height-nav);padding:var(--button-padding);align-items:center;gap:var(--button-gap);border-radius:var(--border-radius);background-color:var(--button-bg-tp);cursor:pointer;outline:none;display:flex;position:relative}nav ul li a img{width:var(--button-img-nav);height:var(--button-img-nav)}nav ul li a.active:after{content:"";width:20px;height:20px;top:50%;right:var(--button-gap);background-image:url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8.29498%2016.59L12.875%2012L8.29498%207.41L9.70498%206L15.705%2012L9.70498%2018L8.29498%2016.59Z'%20fill='white'/%3e%3c/svg%3e");background-position:50%;background-repeat:no-repeat;position:absolute;transform:translateY(-50%)}@media (hover:hover){nav ul li a:hover,nav ul li a:focus-visible{background-color:var(--button-hover-tp)}}@media (hover:none){nav ul li a:active{background-color:var(--button-hover-tp)}}nav ul hr{margin:var(--gap-small) auto}#nav-logo{justify-content:center;align-items:center;width:100%;height:100px;display:flex}#nav-logo a,#nav-logo img{width:100px;height:100px}#nav-menu-bg,#nav-logo-phone,#nav-phone-country,#nav-phone-user,#nav-phone-login,#nav-menu-open,#nav-menu-close{display:none}@media screen and (width<=900px){.nav-wrapper{width:calc(201px + var(--gap-small) + var(--gap-small));padding:0px 0px var(--gap-small) 0px;background-color:var(--bg-secondary);border-left:1px solid var(--border-primary);display:none;position:fixed;top:0;right:0}.nav-wrapper::-webkit-scrollbar-track{margin:var(--gap-small) 0}nav{width:calc(100% - var(--gap-small) - var(--gap-small));border-radius:none;border:none;gap:0;margin:0 auto;padding:0}#nav-logo{display:none}#nav-logo-phone{width:var(--button-height-big);height:var(--button-height-big);margin-left:8px;display:flex}#nav-logo-phone img{width:var(--button-height-big);height:var(--button-height-big)}#nav-menu-open{width:var(--button-height-big);height:var(--button-height-big);display:flex;position:absolute;top:0;right:8px}#nav-menu-open img{width:var(--button-img-big);height:var(--button-img-big)}#nav-menu-close{width:var(--button-height-big);height:var(--button-height-big);margin:0 0 12px auto;display:flex}#nav-menu-close img{width:var(--button-img-big);height:var(--button-img-big)}#nav-menu-close:after{content:"";background-color:var(--bg-secondary);width:2px;height:49px;position:fixed;top:0;right:224px}#nav-menu-bg{background-color:var(--bg-transparent);cursor:pointer;width:100%;height:calc(100% - 50px);z-index:var(--z-nav-bg);position:fixed;top:50px;left:0}.show-nav-menu{display:block!important}#nav-phone-login{width:fit-content;height:var(--button-height-big);top:0;right:calc(var(--button-height-big) + 8px + 8px);display:flex;position:absolute}#nav-phone-user{width:var(--button-height-big);height:var(--button-height-big);top:0;right:calc(var(--button-height-big) + 8px + 8px);display:flex;position:absolute}#nav-phone-country{width:var(--button-height-big);height:var(--button-height-big);top:0;right:calc(var(--button-height-big) + 8px + var(--button-height-big) + 8px + 8px);display:flex;position:absolute}}.custom-input{width:100%;height:auto;margin-top:8px;position:relative}.custom-input label{color:var(--text-input-label);white-space:nowrap;text-overflow:ellipsis;pointer-events:none;padding:0 4px;position:absolute;top:8px;left:4px;overflow:hidden}.custom-input input[type=text]:focus:not(:read-only)~label,.custom-input input[type=text]:valid:not(:read-only)~label,.custom-input input[type=text]:read-only~label,.custom-input textarea:focus:not(:read-only)~label,.custom-input textarea:valid:not(:read-only)~label,.custom-input textarea:read-only~label{font-size:var(--p-small);color:var(--text-input-label);background-color:var(--bg-secondary);translate:0 -16px}.custom-input input[type=text]:focus:not(:read-only),.custom-input textarea:focus:not(:read-only){border:1px solid var(--border-input-focus)}.custom-input input[type=text]:focus:not(:read-only)~label,.custom-input textarea:focus:not(:read-only)~label{color:var(--border-input-focus)}.custom-input.error input[type=text]:not(:read-only),.custom-input.error textarea:not(:read-only){border:1px solid var(--border-input-error)}.custom-input.error input[type=text]:not(:read-only)~label,.custom-input.error textarea:not(:read-only)~label{color:var(--border-input-error)}.custom-input-password input{padding-right:44px}.custom-input-password button{width:var(--button-img);height:var(--button-img);position:absolute;top:4px;right:4px}.custom-input-password button img{width:var(--button-img);height:var(--button-img)}.custom-input_img input{padding-left:calc(4px + var(--button-img) + 4px)}.custom-input_img img{width:var(--button-img);height:var(--button-img);opacity:.25;position:absolute;top:6px;left:4px}.custom-input_img label{left:calc(4px + var(--button-img))}.custom-input_img input[type=text]:focus:not(:read-only)~label,.custom-input_img input[type=text]:valid:not(:read-only)~label,.custom-input_img input[type=text]:read-only~label,.custom-input_img textarea:focus:not(:read-only)~label,.custom-input_img textarea:valid:not(:read-only)~label,.custom-input_img textarea:read-only~label{translate:0 -16px}#article-login{padding:var(--gap-medium)}#article-login .logo-wrapper{justify-content:center;align-items:center;width:min(140px,100%);height:140px;margin:0 auto;display:flex}#article-login .logo-wrapper img{cursor:pointer;width:100%}#article-login section{gap:var(--gap-small);flex-direction:column;width:min(384px,100%);margin:0 auto;display:flex}#article-login section h1{text-align:center;width:100%}#article-login section>button{width:100%}#article-login .page-title{width:min(384px,100%)}.login__token-row{align-items:flex-end}.login__token-row .custom-input{flex:1}.login__token-row button{height:var(--button-height)}.google-button span{color:var(--text-black)}@media screen and (width<=900px){#article-login{padding:var(--gap-small)}#article-login .logo-wrapper{width:min(100px,100%);height:100px}}.fullscreen-image{cursor:zoom-in}.fullscreen-image img{width:100%}.fullscreen{width:var(--modal-width-max);height:var(--modal-height-max);position:relative}.fullscreen__controls{z-index:var(--z-over);position:absolute;top:50%;right:4px;transform:translateY(-50%)}.fullscreen div{transition:all}.fullscreen__image-wrapper{width:var(--modal-width-max);height:var(--modal-height-max);cursor:grab;justify-content:center;align-items:center;display:flex}.fullscreen__image-wrapper img{object-fit:contain;max-width:100%;max-height:100%}.post-share{padding:var(--gap-small)}.post-share__title{width:fit-content}.post__top{justify-content:space-between}.post__text{white-space:pre-wrap}.post__top .button-profile{flex:1}.post__top-info{text-align:right;gap:0;width:fit-content}.post__attachments-wrapper{overflow:hidden}.post__attachments-container{height:324px;transition-timing-function:cubic-bezier(0,0,.2,1);display:flex;position:relative;top:0;left:0}.post__attachment{border-radius:var(--border-radius);background-color:var(--bg-primary)}.post__attachment img{height:324px;padding:var(--gap-small);object-fit:contain;transition:all}.post__attachment_single{object-fit:contain;border-radius:var(--border-radius);width:100%}.post__attachments-control{-webkit-user-select:none;user-select:none;justify-content:center;align-items:center}.post__attachments-control span{text-align:center;width:20px;display:inline-block}.post__buttons{flex-wrap:wrap;justify-content:flex-start}@media screen and (width<=900px){.post__attachments-container,.post__attachment img{height:224px}}.tp.button-toTop{width:60px;height:60px;bottom:calc(var(--gap-small) * 5);z-index:var(--z-above);background-color:#fff2;border-radius:50%;position:absolute;left:calc(50% + 482px);transform:translate(-50%)}.tp.button-toTop img{width:48px;height:48px}@media (hover:hover){.tp.button-toTop:hover,.tp.button-toTop:focus-visible{background-color:var(--button-hover)}}@media screen and (width<=1060px){.tp.button-toTop{left:unset;right:16px;transform:translate(0)}}@media screen and (width<=760px){.tp.button-toTop{display:none}}.home__image-AA{width:min(600px,100%);margin:0 auto -30px}.calendar-text{font-variant-numeric:tabular-nums}iframe,.home__thumbnail{width:100%}.news-add>button{margin:0 auto}.news-add__input-row{align-items:flex-end;width:100%}.news-add__input-row .custom-input{flex:1}.news-add__preview-text{text-align:center}.news-add__preview{width:fit-content;margin:0 auto}.news-add__preview img{object-fit:contain;border-radius:var(--border-radius);width:100%;height:100px}.news-add__attachments{flex-wrap:wrap;width:100%}.news-add__attachments .flex-col{gap:0;width:calc(20% - 9.6px)}.news-add__attachments .fullscreen-image img{object-fit:cover;border-radius:var(--border-radius);width:100%;height:100px}.news-add__attachments button{width:100%}.user-profile__top{gap:var(--gap-small);height:100px;display:flex}.user-profile__top-name{justify-content:center;gap:var(--gap-small);flex-direction:column;display:flex}.user-profile__top-name h2{text-overflow:ellipsis;max-height:58px;overflow:hidden}.user-profile__top-tag{align-items:center;gap:var(--button-gap);cursor:pointer;width:fit-content}.user-profile__top-photo{height:100px}.user-profile__top-photo img{background-color:var(--bg-primary);object-fit:cover;border-radius:50%;width:100px;height:100px}.user-profile__buttons{flex-wrap:wrap}.user-profile__row{align-items:center;width:100%;display:flex}.user-profile__row>p{width:40%}.user-profile__row>button{width:60%}@media screen and (width<=900px){.user-profile__top{flex-direction:column;align-items:center;height:auto}.user-profile__top-name{align-items:center}.user-profile__top-name h2{max-height:none}.user-profile__top-photo{height:100px}.user-profile__top-photo img{background-color:var(--bg-primary);object-fit:cover;border-radius:50%;width:100px;height:100px}}.user-list__search{align-items:flex-end}.user-list__search .custom-input{flex:1}.user-edit>button{margin:0 auto}.user-edit__preview-text{text-align:center}.user-edit__preview{width:fit-content;margin:0 auto}.user-edit__preview img{object-fit:contain;border-radius:var(--border-radius);width:100%;height:100px}.country-page__top{gap:var(--gap-small);height:100px;display:flex}.country-page__top-name{justify-content:center;gap:var(--gap-small);flex-direction:column;display:flex}.country-page__top-name h2{text-overflow:ellipsis;max-height:58px;overflow:hidden}.country-page__top-tag{align-items:center;gap:var(--button-gap);cursor:pointer;width:fit-content}.country-page__top-photo{height:100px}.country-page__top-photo img{background-color:var(--bg-primary);object-fit:cover;border-radius:50%;width:100px;height:100px}.country-page__buttons{flex-wrap:wrap}.country-page__row{align-items:center;width:100%;display:flex}.country-page__row>p{width:40%}.country-page__row>button{width:60%}.country-page__column{gap:var(--gap-small);flex-direction:column;width:100%;display:flex}@media screen and (width<=900px){.country-page__top{flex-direction:column;align-items:center;height:auto}.country-page__top-name{align-items:center}.country-page__top-name h2{max-height:none}.country-page__top-photo{height:100px}.country-page__top-photo img{background-color:var(--bg-primary);object-fit:cover;border-radius:50%;width:100px;height:100px}}.country-list__search{align-items:flex-end}.country-list__search .custom-input{flex:1}.country-edit>button{margin:0 auto}.country-edit__preview-text{text-align:center}.country-edit__preview{width:fit-content;margin:0 auto}.country-edit__preview img{object-fit:contain;border-radius:var(--border-radius);width:100%;height:100px}.dice__luck{align-items:center}.dice__luck div{transition:all}.dice__luck-wrapper{width:100%;height:var(--button-height);flex:1;justify-content:center;align-items:center;display:flex}.dice__timer{display:none}.dice__timer.show-timer{display:block}.dice__timer-span{text-align:center;width:22px;display:inline-block}@media screen and (width<=400px){.dice__luck{flex-direction:column}.dice__luck-wrapper{flex:none}}.dossier__photo{width:140px}.dossier__photo img{object-fit:cover;width:140px;height:140px}.dossier__photo_border{border-radius:var(--border-radius);background-color:var(--bg-primary);border:1px solid #fff}.dossier__info{gap:4px}.dossier__info h3{margin-bottom:var(--gap-small)}.dossier__dossier{border:1px solid var(--border-input);border-radius:var(--border-radius);white-space:pre-wrap;padding:var(--gap-small)}@media screen and (width<=900px){.dossier__photo{width:100px}.dossier__photo img{width:100px;height:100px}}.support-section p{color:var(--text-light)}.support-ul li{margin-left:var(--gap-medium);list-style-type:disc}.support-img{border:1px solid var(--border-primary);border-radius:var(--border-radius);object-fit:contain}.seasons-wrapper{border-radius:var(--border-radius);overflow:hidden}.seasons-container{display:flex;position:relative;top:0;left:0}.season{background-color:var(--bg-primary)}.season__content{height:100%;padding-bottom:var(--gap-small)}.season__info{padding:0 var(--gap-small);flex:1}.season__info>div{width:fit-content}.season__info>div hr{margin-bottom:var(--gap-small)}.season__info h4{font-size:var(--p-small);font-style:italic}.season__info button{margin-top:auto}.season__name{font-size:var(--h2)}.season__stars{gap:4px}.season__stars img{width:var(--button-img-big)}.season__text{text-align:center;width:80%}.seasons-control{-webkit-user-select:none;user-select:none;justify-content:center;align-items:center}.seasons-control span{text-align:center;min-width:20px;display:inline-block}.reviews-wrapper{border-radius:var(--border-radius);overflow:hidden}.reviews-container{display:flex;position:relative;top:0;left:0}.review{background-color:var(--bg-primary)}.review__content{padding:var(--gap-small);align-items:center}.review__photo{width:100px}.review__photo img{background-color:var(--bg-primary);object-fit:cover;border-radius:50%;width:100px;height:100px}.review__name{font-size:var(--h2)}.review__stars{gap:4px}.review__stars img{width:var(--button-img-big)}.review__text{text-align:center;width:80%}.reviews-control{-webkit-user-select:none;user-select:none;justify-content:center;align-items:center}.reviews-control span{text-align:center;min-width:20px;display:inline-block}@media screen and (width<=900px){.review__text{text-align:center;width:100%}}.settings__radio-input{cursor:pointer;align-items:center;gap:0}.settings__radio-input label{width:calc(100% - 16px);cursor:inherit;padding-left:12px}@media screen and (width<=900px){.settings__phone-hide{display:none}}.policy-section ul li{margin-left:30px;list-style-type:disc}
