@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansExtraLight-Italic.otf') format('opentype');
    font-weight: 200;
    /* Extra Light */
    font-style: italic;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansExtraLight.otf') format('opentype');
    font-weight: 200;
    /* Extra Light */
    font-style: normal;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansLight-Italic.otf') format('opentype');
    font-weight: 300;
    /* Light */
    font-style: italic;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansLight.otf') format('opentype');
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'PlutoSansLight';
    src: url('fonts/PlutoSansLight.otf') format('opentype');
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansRegular-Italic.otf') format('opentype');
    font-weight: normal;
    /* 400 */
    font-style: italic;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansRegular.otf') format('opentype');
    font-weight: normal;
    /* 400 */
    font-style: normal;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansMedium-Italic.otf') format('opentype');
    font-weight: 500;
    /* Medium */
    font-style: italic;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansMedium.otf') format('opentype');
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansHeavy-Italic.otf') format('opentype');
    font-weight: 800;
    /* Heavy */
    font-style: italic;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansHeavy.otf') format('opentype');
    font-weight: 800;
    /* Heavy */
    font-style: normal;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansThin-Italic.otf') format('opentype');
    font-weight: 100;
    /* Thin */
    font-style: italic;
}

@font-face {
    font-family: 'PlutoSans';
    src: url('fonts/PlutoSansThin.otf') format('opentype');
    font-weight: 100;
    /* Thin */
    font-style: normal;
}

@font-face {
    font-family: 'PlutoSansBold';
    src: url('fonts/PlutoSansRegular.otf') format('opentype');
    font-weight: 400;
    /* Light */
    font-style: normal;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #13101f;
    border: none;
}

::-webkit-scrollbar-thumb {
    background: #7737b7;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: #419cc3;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"] {
    font-family: "PlutoSans", sans-serif;
    font-size: 16px;
    padding: 20px;
    color: white;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px 3px 6px #00000059;
    border-radius: 12px;
    height: 60px;
    box-sizing: border-box;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

button {
    font-size: 16px;
    color: white;
    font-family: "PlutoSans", sans-serif;
    background-color: rgba(68, 31, 102, 0.3);
    ;
    background-clip: padding-box;
    border: 2px solid transparent;
    border-radius: 60px;
    padding: 12px 60px;
    position: relative;
    overflow: hidden;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*z-index: -1;*/
    background: linear-gradient(to bottom, #7EC364, #0C9AD6);
    border-radius: inherit;
    padding: 2px;
    /* This creates the 3px border */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

button:hover {
    background-color: rgba(68, 31, 102, 0.8);
    box-shadow: inset 0px 3px 6px #00000059;
}

button:disabled {
    background-color: rgba(120, 100, 140, 0.5); /* lilás-szürkés árnyalat */
    color: rgba(255, 255, 255, 0.6); /* halványított fehér szöveg */
    cursor: none !important;
    box-shadow: none;
    pointer-events: none;
    opacity: 1; /* fontos, hogy ne legyen áttetszőbb mint kell */
}

button:disabled::before {
    display: none; /* elrejtjük az animált színes keretet */
}

input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    vertical-align: -45%;
    margin-right: 10px;
}

input[type="checkbox"]:checked::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    position: absolute;
    top: 2px;
    left: 2px;
}

/*IFrame - Youtube Shorts kinézet */

.frame-youtubeshorts-container {
    position: relative;
    width: 360px;
    height: 640px;
    overflow: hidden;
    margin: 0 auto; 
    display: flex;
    align-items: center; 
    justify-content: center; 
  }
  .frame-youtubeshorts-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

/*vége*/

message {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 2000;
    background-color: rgb(119, 55, 183, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

message:not(.show) {
    opacity: 0;
    pointer-events: none;
}

message container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 30px;
    border-top: 3px dashed #7EC364;
    border-bottom: 3px dashed #0C9AD6;
    background-color: rgba(0, 0, 0, 0.3);
}

message:not(.error) button {
    display: none;
}

menu-elements {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
}

menu-elements>div {
    font-size: 32px;
    font-weight: 200;
    padding: 16px;
    border-bottom: 1px solid white;
    margin: 0px 50px;
    cursor: pointer;
}

menu {
    position: fixed;
    width: 560px;
    box-sizing: border-box;
    left: 0;
    top: 0;
    height: 100%;
    background-color: black;
    margin: 0;
    z-index: 100;
    padding: 10px 30px;
    background-image: url('menuBg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0% 100%;
    display: none;
}

menu.show {
    display: block;
}

a {
    color: inherit;
    text-decoration: inherit;
}

@media only screen and (max-width: 600px) {
    menu {
        width: 600px;
    }
}

:root {
    --color-background: #FAFBFC;
    --color-label: #31728d;
    --color-sidebar: #E9F8FF;
    --color-blue: #019adb;
    --color-green: #75ca52;
    --color-light-orange: #ffdc86;
    --color-light-purple: #e9ceff;
    --color-light-blue: #8bdbfc;
    --border-color: #D5E2E8;
    --shadow: 0px 0px 5px black;
    --shadow-soft: 0px 0px 10px rgba(0, 0, 0, 0.1);
    --shadow-soft-border: 1px solid rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --font-family: Helvetica, sans-serif;

    --color-hph-black: #2C2C2C;
    --color-hph-gray: #AABCC5;
    --color-hph-white: #FFFFFF;
    --color-hph-pale-blue: #eff8fc;
    --color-hph-light-gray: #EDF3F5;
    --color-hph-dark-gray: #687378;
    --color-hph-dark-blue: #003C56;
    --color-hph-light-green: #ABEF8F;
    --color-hph-brand-green: #75CA52;
    --color-hph-brand-blue: #009bdc;
    --color-hph-blue: #0073A5;
    --color-hph-light-yellow: #FFDD87;
    --color-hph-yellow: #FFC940;
    --color-hph-light-blue: #cbf0ff;
    --color-hph-light-purple: #E9CEFF;
    --color-hph-red: #EF5959;
    --color-hph-gray-red: #bf8f8f;
    --color-hph-gray-green: #8fbf9b;
    /* --font-family: 'Inter', sans-serif; */
}