html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}


body {
    font-size: 1.6rem;
    color: #63737c;
    border-bottom: rgba(247,146,58) 3rem solid;
}

.sm-90 {
    scroll-margin-top: 90px;
}

.sm-120 {
    scroll-margin-top: 120px;
}

/* variables */
:root {
    --brand:       #f7923a;
    --brand-600:   #d97b26;
    --brand-active: #c66913;
    --gap-x:       24px;
    --gap-y:       14px;
    --pill-min:    220px;
    --radius:      8px;
    --border:      #afb9bf;
    --text:        #333;
    --muted:       #666;
    --shadow:      0 4px 16px rgba(0,0,0,.12);
}
 .material-symbols-outlined {
     font-variation-settings:
             'FILL' 0,
             'wght' 500,
             'GRAD' 000,
             'opsz' 24
 }

 .cookie-button {
     width: 35px;
     height: 35px;
     position: sticky;
     bottom: 25px;
     left: 20px;
     border: 3px solid var(--muted);
     float: left;
     z-index: 995;
     color: var(--muted);
     border-radius: 20px;
     transition: all .2s ease-in-out;
 }

 .cookie-button:hover {
     background-color: var(--muted);
     color: #fff;
     cursor: pointer;
 }

 .cookie-button:active {
     transform: scale(.9);
     background-color: #000000;
     border-color: #000000;
 }
 .cookie-button:focus {
     background-color: var(--muted);
     color: #fff;
 }

.filelib {
    font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
}

/* Accordion title and zip download button */
.filelib-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .5rem 0 1rem;
    gap: 1rem;
}

.filelib-zip {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background .16s ease;
}
.filelib-zip:hover {
    background: var(--brand-600);
}

.filelib-zip:active {
    transform: scale(.98);
    background: var(--brand-active);
}


.filelib-folder {
    margin: 10px 0 0 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: clip;
}

.filelib-folder > summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 700;
    color: #1d2939;
}

/* Arrow icon */
.filelib-folder > summary::after {
    content: "";
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    margin-left: 8px;
    background: url("/images/arrow_down.svg") no-repeat center / contain;
    transform: rotate(180deg);
    transition: transform .2s ease;
}

.filelib-folder[open] > summary::after {
    transform: rotate(0deg);
}

.filelib-folder-body {
    padding: .5rem;
}

.filelib-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--pill-min), 1fr));
    gap: var(--gap-y) var(--gap-x);
    margin: .35rem 0;
}

/*File box*/
.filelib-file {
    display: block;
    text-align: center;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    margin: 0 32px;
    border-radius: var(--radius);
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
    transition: background .16s ease, transform .16s ease;
    cursor: pointer;
    user-select: none;
    white-space: normal;
    word-break: break-word;
    padding: 12px 16px;
}

.filelib-file:hover {
    background: var(--brand-600);
    transform: translateY(-1px);
}
.filelib-file:active {
    transform: scale(.98);
    background: var(--brand-active);
}

.filelib-pic {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin: 5px 8px;
    border-radius: var(--radius);
    font-weight: 600;
    line-height: 1.2;
    transition: background .16s ease, transform .16s ease;
    cursor: pointer;
    padding-bottom: 8px;
    padding-right: 5px;
}

.filelib-pic:hover {
    background: var(--brand);
    transform: translateY(-2px);
    padding: 0 5px 8px 0;
}

.filelib-pic:active {
    transform: scale(.98);
    background: var(--brand-active);
}

.filelib-pic img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}

.pildipank {
    display: block;
    color: #fff;
    text-decoration: none;
    min-width: 75%;
    margin-left: 50px;
    margin-right: 400px;
    max-width: 1400px;
}
/* Hover preview box */
.filelib-preview {
    position: absolute;
    z-index: 10000;
    display: none;
    max-width: 30%;
    width: auto;
    height: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;

}
.filelib-preview-title {
    font-weight: 600;
    font-size: 12px;
    color: var(--muted);
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
    background: #fafafa;
}
.filelib-preview-img {
    display: block;
    max-width: 100%;
    max-height: 1500px;
    object-fit: contain;
}
.filelib-preview-pdf {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: 0;
}
.preview-pdf {
    width: 30%;
    height: 30%;
}

.error-msg {
    border: 1px solid black;
    border-radius: 5px;
    text-align: center;
}

#wrap {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
   // background-color: salmon;

}

.menulink {
    font-size: 1.4rem;
    line-height: 2.5rem;
    color: #046c63;
}

#varvid .st12,
#varvid .st13,
#varvid .st14 {
  font-family: Arial    ;
}

@media screen and (max-width: 920px) {
    header  ul {
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #wrap {
        max-width: 100%;
    }
}

p {
    font-size: 1.4rem;
    margin-bottom: 1.7rem;
    line-height: 1.3;

}

h3 {
    color: #f7923a;
}

h2 {
    font-size: 8rem;
    transform: translate(-5px,0px);
    margin-top: 6rem;
    color: #046c63;
}

h1 {
    font-size: 10rem;
    transform: translate(-5px,0px);
    color: #f7923a;
}
.logo {
    width: 50rem;
    margin-top: 10rem;
    margin-left: 4rem;
    max-width: 40rem ;
    margin-bottom: 2rem ;

}

.logo2 {
    width: 40rem;
    margin-left: 6rem;
    height: auto;
}
.banner .inner p {
    margin-left: 11rem;
    font-size: 1.6rem;
    margin-right: -6rem;
    line-height: 1.3;

}
.full-width {
    margin-left: calc(-100vw / 2 + 100% / 2) !important;
    margin-right: calc(-100vw / 2 + 100% / 2) !important;
    max-width: 100vw !important;
    width: auto !important;
}

body {
    overflow-x: hidden;
}
.max-width {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
    //overflow: hidden;
}

.fz-12 {
    font-size: 1.4rem;
}

.-mr-88 {
    margin-right: -22rem;
}


.bg-d8d8d8 {
    background-color: #fff;
    border: solid 1px #afb9bf;
}
.bg-d8d8d8 > div {

}
.knowledge {
    object-fit: contain;

}
.nomb {
    margin-bottom: 0;
}
a.btn.download.br {
    padding: 0.6rem 1rem 0.6rem 1rem;
}
a.btn.download {
    background-color: rgba(247,146,58);
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    min-width: 19rem;
    border-radius: .5rem;
    text-align: center;
    padding: 1.6rem 1rem;
    line-height: 1;
    transition: background .16s ease, transform .16s ease;
}

a.btn.download:hover {
    background-color: var(--brand-600);
}

a.btn.download:active {
    transform: scale(.98);
    background-color: var(--brand-active);
}


header {
    z-index: 20;
}

.header-one {
    margin-left: 2.2rem;
}

.header-two {
    margin-left: 5rem;
}

header a {
    padding-left: 0 !important ;
    padding-right: 0.9rem !important;
}
.ico1 {
    margin-bottom: -7rem;
    padding-top: 2rem;
    width: 100%;
}
.ico2 {
    width: 24rem;
    vertical-align: bottom;
    align-self: flex-end;
    object-fit: contain;
    object-position: bottom;
}
.clothes {
    z-index: 0;
    position: relative;
    margin-top: 2rem;
    margin-left: -1rem;
    transform: scale(1.13) !important;
}

.row:not(.noml) {
    margin-left: 5rem;
}
.border-1 {
    border: 1px solid #ddd;
}

.dims {
    margin-top: 0rem;
}
.dimsb .btn {
    margin-right: 1rem;
}
.dims img {
}

.kt {
    margin-left: -3rem;
    padding-right: 7rem;
}

#varvid img {
    max-width: 78rem;
    margin-left: 8rem;
    margin-top: -2rem;
}

.gr2 {
    max-width: 95%;
}
.text-foto {
    font-size: 1.4rem
}
#foto p {
    padding-right: 12rem;
}

.-mr-72 {
    margin-right: -14rem;
}



.t1 {
    top: 10rem;
    left: -5rem;
}
.t2 {
    top: 23rem;
    right: 15rem;
}

[src="images/thanks4.png"] {
    margin-top: -2rem;
}

[src="images/uksesilt1.svg"] {
    width: 100%;
}

[src="images/uksesilt2.svg"] {
    width: 100%;
}
[src="images/varbamispaev1.jpg"] {
    width: 283px;
    height: 406px;
}
[src="images/varbamispaev2.jpg"] {
    width: 283px;
    height: 406px;
}
[src="images/varbamispaev3.jpg"] {
    width: 283px;
    height: 406px;
}
[src="images/infosilt2.png"] {
    width: 445px;
    height: 592px;
}
[src="images/infokiri2.png"] {
    width: 445px;
    height: 592px;
}

[data-src="images/logosexpansion.svg"] {
    max-width: 35rem;

}

.t5 {
    margin-left: -4rem;
}
.t4 {
    margin-left: -8rem;
}
#ametlikud-materjalid {
    margin-top: 4rem;
}
[src="images/digi1.svg"] {
    max-width: 24rem    ;
}
[src="images/digi2.svg"] {
    max-width: 24rem    ;
    margin-left: -4rem;
}



[src="images/email.svg"] {
    max-width: 18rem;
    margin-left: .5rem;
}

[src="images/text-4.svg"] {
    width: 80%;
    margin-bottom: 2rem;
}
[src="images/text-3.svg"] {
   max-width: 110%;

}

.kaared {
    z-index: -1;
    pointer-events: none;
    position: absolute;
    height: 58rem;
    width:50vw;
    background-repeat: no-repeat;
    background-position: 5vw top;

}

@media  (max-width: 700px) {
    .kkk img {
        width: 0 !important;
    }
}


#kirjatüüp:root .safari_only {
padding-top: 60px;
}

[src="images/rollup.png"],
[src="images/rollup.svg"]

{
    max-height: 30rem;
}

.kommikarp-text {
    margin-left: 19rem;
}

.lipud-text {
    margin-top: -8rem;
    text-align: right;
    margin-right: 12rem;
}

.nimesilt-text {
    margin-left: 12rem;
}
