/* ---------------------------------------------------------fonts*/
@font-face {
    font-family: LamaSans-Black;
    src: url('./fonts/LamaSans-Black.ttf');
}

@font-face {
    font-family: LamaSans-Bold;
    src: url('./fonts/LamaSans-Bold.ttf');
}

@font-face {
    font-family: LamaSans-ExtraBold;
    src: url('./fonts/LamaSans-ExtraBold.ttf');
}

@font-face {
    font-family: LamaSans-ExtraLight;
    src: url('./fonts/LamaSans-ExtraLight.ttf');
}

@font-face {
    font-family: LamaSans-Light;
    src: url('./fonts/LamaSans-Light.ttf');
}

@font-face {
    font-family: LamaSans-Medium;
    src: url('./fonts/LamaSans-Medium.ttf');
}

@font-face {
    font-family: LamaSans-Regular;
    src: url('./fonts/LamaSans-Regular.ttf');
}

@font-face {
    font-family: LamaSans-SemiBold;
    src: url('./fonts/LamaSans-SemiBold.ttf');
}

@font-face {
    font-family: LamaSans-Thin;
    src: url('./fonts/LamaSans-Thin.ttf');
}

/* ---------------------------------------------------------fonts*/
/* ---------------------------------------------------------root */
:root {
    /* fonts */
    --ff-LamaSans-Black: LamaSans-Black;
    --ff-LamaSans-Bold: LamaSans-Bold;
    --ff-LamaSans-ExtraBold: LamaSans-ExtraBold;
    --ff-LamaSans-ExtraLight: LamaSans-ExtraLight;
    --ff-LamaSans-Light: LamaSans-Light;
    --ff-LamaSans-Medium: LamaSans-Medium;
    --ff-LamaSans-Regular: LamaSans-Regular;
    --ff-LamaSans-SemiBold: LamaSans-SemiBold;
    --ff-LamaSans-Thin: LamaSans-Thin;

    /* colors */
    --clr-bg-white: 0, 0%, 96%;
    --clr-white: 0, 0%, 100%;
    --clr-black: 0, 0%, 0%;
    --clr-blue: 222, 69%, 34%;
    --clr-red: 350, 74%, 49%;

    /* padding */
    --pad: 1.25rem;
    --primary-light: #8abdff;
    --primary: #6d5dfc;
    --primary-dark: #5b0eeb;
    --white: #FFFFFF;
    --greyLight-1: #E4EBF5;
    --greyLight-2: #c8d0e7;
    --greyLight-3: #bec8e4;
    --greyDark: #9baacf;
}

/* ---------------------------------------------------------root */
/* -------------------------------------cange color of highlight */
::-moz-selection {
    background-color: hsl(var(--clr-blue));
    color: hsl(var(--clr-white));
}

::selection {
    background-color: hsl(var(--clr-blue));
    color: hsl(var(--clr-white));
}

/* -------------------------------------cange color of highlight */
/*--------- remove animqations from thosr who've turned them off */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/*--------- remove animqations from thosr who've turned them off */
/* ---------------------------------------------------box sizing */
*,
*::before,
*::after {
    transition: all 0.4s cubic-bezier(0.43, 1.1, 0.62, 1.08);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none; */
}

/* ---------------------------------------------------box sizing */
/* ----------------------------------------------body-html style */
html {
    font-size: 62.5%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 10rem;
    -webkit-overflow-scrolling: touch;
}

html:focus-within {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion) {
    html:focus-within {
        scroll-behavior: auto;
    }
}

html,
body {
    overscroll-behavior: none;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
}

body {
    text-rendering: optimizeSpeed;
    line-height: 1.6;
    min-height: 100%;
    font-size: 16px;
    font-family: var(--ff-LamaSans-Regular);
    color: hsl(var(--clr-blue));
    background: var(--clr-bg-white);
    background-size: cover;
    margin: 0;
}

body::-webkit-scrollbar {
    width: 0;
}

body::-webkit-scrollbar-track {
    background-color: hsl(var(--clr-white));
}

body::-webkit-scrollbar-thumb {
    background-color: hsl(var(--clr-red));
}

/* ---------------------------------------Set core body defaults */
/* ------------------------------------------------gniral styling*/
a {
    color: #0b60ef;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms linear;
}

a:active,
a:hover {
    outline: 0
}

img,
svg,
image,
video {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

input,
button,
textarea,
select {
    font: inherit;
}

select:focus,
input:focus,
button:focus {
    outline: 0;
}

button {
    cursor: pointer;
    border: 0;
    background: transparent;
}

ul {
    margin: 0;
    padding: 0;
}

/* p {
    width: 300px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
} */

.big-title {
    color: hsl(var(--clr-red));
    font-weight: bolder;
    font-size: 24px;
    padding-bottom: 1em;
}

.par {
    padding-bottom: .5em;
    font-size: 16px;
    font-weight: 600;
    color: hsl(var(--clr-black), .75);
}

.marker {
    background: var(--greyLight-1);
    color: hsl(var(--clr-blue));
    padding: .22em .5em;
    border-radius: 5px;
}

.green {
    color: green;
}

.red {
    color: hsl(var(--clr-red));
}

.blue {
    color: #0b60ef;
}

.bold {
    font-weight: bolder;
    color: hsl(var(--clr-black));
}

.line-throw{
    width: 100%;
    height: 3px;
    background: hsl(var(--clr-red));
    border-radius: 50px;
    border: 1px solid hsl(var(--clr-red));
}

.added .link-added{
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-self: start;
    word-wrap: break-word;
}   

.added .link-added br{
    display: none;
}

.added .link-added .b{
    width: 5px;
    height: 5px;
    background: hsl(var(--clr-red));
    margin-inline-end: .5em;
    border: 1px solid hsl(var(--clr-red));
    border-radius: 50px;
    display: inline-block;
    margin-bottom: .25em;
}
#copy-url{
    margin-left: 1em;
}

#copy-url img{
    filter: invert(24%) sepia(79%) saturate(2684%) hue-rotate(336deg) brightness(81%) contrast(93%);
}

.floating-btn {
  position: fixed;
  top: 0.75em;
  right: 1em;
  width: 50px;
  height: 50px;
  z-index: 1000;
  background: hsl(var(--clr-blue));
  padding: 0.5em;
  border-radius: 5px;
  box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2),
    -0.2rem -0.2rem 0.5rem var(--white);
}

.floating-btn img {
  filter: invert(89%) sepia(100%) saturate(0%) hue-rotate(181deg)
    brightness(112%) contrast(111%);
}


/* ------------------------------------------------gniral styling*/
/*------------------------------------------- screen reader only */
.sr--only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    transition: 1s ease-in-out;
    transition-delay: 0.5s;
}

/*------------------------------------------- screen reader only */
/* ----------------------------------------------------animation */
@keyframes fadeIn {
    0% {
        transform: translateY(-4rem) scale(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem) scale(0);
        opacity: 1;
    }
}

/* animation: fadeIn 0.4s cubic-bezier(0.54, 1.3, 0.63, 1.34) 0.4s backwards; */

/* ----------------------------------------------------animation */
/* ------------------------------------------------------worning */
.warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    background: hsl(var(--clr-bg-white));
    z-index: 55;
}

.warning h1 {
    font-size: 35px;
    margin: 0 0 1rem 0;
    user-select: none;
}

.warning p,
.message-err {
    margin: 0.5rem 0;
}

.warning img {
    max-width: 550px;
    width: 100%;
    height: 150px;
}

body.error .warning {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------------------worning */
.myHeader {
    position: relative;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--greyLight-1);
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    left: 0;
    z-index: 400;
}

.myHeader img {
    max-width: 500px;
}

.myPage {
    position: relative;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0em 5em;
    display: flex;
    justify-content: space-between;
}

.myPage.active {
    position: relative;
}

.myPage:before,
.myPage:after {
    content: " ";
    display: table;
}

.myPage .menu-btn {
    position: absolute;
    top: 1em;
    left: 0;
    background: hsl(var(--clr-blue));
    padding: 1em 1em 1em 2em;
    border-radius: 0 25px 25px 0;
    display: none;
}

.myPage .menu-btn img {
    width: 25px;
    filter: invert(89%) sepia(100%) saturate(0%) hue-rotate(181deg) brightness(112%) contrast(111%);
}

.myPage:after {
    clear: both;
}

.myPage .mySidmenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2em;
    font-size: 16px;
    padding: 2em 2.5em 1em;
    padding-bottom: 15em;
    max-height: calc(100vh - 7em);
    overflow-y: auto;
     position: fixed;
    top:7em;
    left: 0;
    background: hsl(var(--clr-white));
    max-width: 450px;
    width: 450px;
}

.myPage.Login-Endpoint a.Login-Endpoint,
.myPage.Supplementary a.Supplementary,
.myPage.Create-an-Order a.Create-an-Order,
.myPage.Edit-an-Order a.Edit-an-Order,
.myPage.Retrieve-Orders a.Retrieve-Orders,
.myPage.Get-Order-Statuses a.Get-Order-Statuses,
.myPage.Retrieve-Specific-Orders-by-IDs a.Retrieve-Specific-Orders-by-IDs,
.myPage.Manage-Invoices a.Manage-Invoices,
.myPage.Response-Handling a.Response-Handling {
    color: hsl(var(--clr-red));
  font-size: var(--ff-LamaSans-Bold);
  font-weight: bolder;
  font-size: 20px;
  border-right: 3px solid hsl(var(--clr-red));
  display: inline-block;
  width: 100%;
}

.myPage .mySidmenu .links {
    width: 100%;
    flex: 1;
    padding-inline-end: .5em;
    cursor: pointer;
}

.myPage .mySidmenu .active a {
    color: hsl(var(--clr-red));
    font-size: var(--ff-LamaSans-Bold);
    font-weight: bolder;
    font-size: 20px;
}

.myPage .mySidmenu a {
    color: hsl(var(--clr-blue));
    font-weight: 600;
    padding: .5em 0;

}

.myPage .mySidmenu .active,
.myPage .mySidmenu>div:hover {
    color: hsl(var(--clr-red));
}


.myPage .mySidmenu>div:hover a {
    color: hsl(var(--clr-red));
    font-weight: 800;
}

.myPage .ides {
    position: fixed;
    top: 7em;
    left: 450px;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    padding: 2em;
    -webkit-overflow-scrolling: touch;
}

.myPage .ides::-webkit-scrollbar {
    width: 0;
}

.myPage .ides::-webkit-scrollbar-track {
    background-color: hsl(var(--clr-white));
}

.myPage .ides::-webkit-scrollbar-thumb {
    background-color: hsl(var(--clr-red));
}

.myPage .ides .integration,
.myPage .ides .changelog,
.myPage .ides .workflow-overview {
    padding-bottom: 1em;
}

.myPage .ides .workflow-overview {
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.myPage .ides .workflow-overview .par {
    padding-bottom: 0.5em;
    font-size: 20px;
}

.myPage .ides .workflow-overview .line.par {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: hsl(var(--clr-black), .75);
    padding: 0;
    gap: .5em;
    font-size: 20px;
    padding-bottom: .75em;
    padding-top: .5em;
    font-weight: 700;
}

.myPage .ides .workflow-overview .line.par .dot {
    width: 6.5px;
    height: 6.5px;
    border-radius: 50%;
    background: hsl(var(--clr-red));
    margin-bottom: .25em;
    margin-inline-end: 1em;
    box-shadow: 0px 0px 5px hsl(var(--clr-red));
    flex-shrink: 0;
}

.myPage .ides .workflow-overview .workflow-list {
    padding-inline-start: 3em;
    list-style-type: circle !important;
    font-family: var(--ff-LamaSans-Regular);
    color: hsl(var(--clr-black), .75);
    font-size: 18px;
    margin-bottom: 1em;
}

.myPage .ides .workflow-overview .workflow-list li {
    padding-bottom: .75em;
}

.myPage .ides .workflow-overview .workflow-table-wrap {
    overflow-x: auto;
    margin-bottom: 1.5em;
    -webkit-overflow-scrolling: touch;
}

.myPage .ides .workflow-overview .workflow-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-family: var(--ff-LamaSans-Regular);
    font-size: 16px;
    color: hsl(var(--clr-black), .85);
}

.myPage .ides .workflow-overview .workflow-table th,
.myPage .ides .workflow-overview .workflow-table td {
    border: 1px solid hsl(var(--clr-black), .15);
    padding: 0.75em 1em;
    text-align: start;
    vertical-align: top;
}

.myPage .ides .workflow-overview .workflow-table th {
    background: var(--greyLight-1);
    color: hsl(var(--clr-blue));
    font-weight: 700;
}

.myPage .ides .workflow-overview .workflow-table td:first-child {
    text-align: center;
    white-space: nowrap;
}

.myPage .ides .workflow-overview .workflow-table a {
    color: hsl(var(--clr-blue));
    font-weight: 600;
}

.myPage .ides .workflow-overview .workflow-diagram {
    background: var(--greyLight-1);
    border-radius: 5px;
    padding: 1.25em 1.5em;
    overflow-x: auto;
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.35;
    color: hsl(var(--clr-black), .85);
    margin-bottom: 1.5em;
    white-space: pre;
    -webkit-overflow-scrolling: touch;
}

.myPage .ides .changelog {
    margin-bottom: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.myPage .ides .integration .par,
.myPage .ides .changelog .par {
    padding-bottom: 1em;
    font-size: 20px;
}

.myPage .ides .changelog .added {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-self: stretch;
}

.myPage .ides .changelog .added .text {
    font-family: var(--ff-LamaSans-Regular);
    color: hsl(var(--clr-black), .75);
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.myPage .ides .changelog a.par {
    background: var(--greyLight-1);
    color: hsl(var(--clr-blue));
    padding: .5em .9em;
    border-radius: 5px;
    cursor: pointer;
}

.myPage .ides .changelog a.par span {
    font-size: 25px;
    padding-inline-end: 1em;
}

.myPage .ides .mypoints .point {
    /* margin-bottom: 5.5em;
    min-height: 100vh;*/
}

.myPage .ides .mypoints .point#Edit-an-Order.new-1>*  {
    border-radius: 5px;
    padding: 1em;
    animation: marker 1.5s ease-in-out alternate;
}

@keyframes marker {
    0%{
        background: hsl(var(--clr-blue), .75);
    }
    50%{
        background: hsl(var(--clr-blue), .35);
    }
    100%{
        background: hsl(var(--clr-blue), 0);
    }
}

.myPage .ides .mypoints .point .line {
    display: flex;
    align-items: flex-end;
    gap: 2em;
}

.myPage .ides .mypoints .point .line .circle {
    width: 10rem;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
}

.myPage .ides .mypoints .point .line .circle .circle__btn {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 9rem;
    height: 9rem;
    padding-top: .35em;
    display: flex;
    margin: 0.6rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 3.2rem;
    font-weight: bolder;
    color: hsl(var(--clr-blue));
    z-index: 300;
    background: var(--greyLight-1);
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    cursor: pointer;
    position: relative;
}

.myPage .ides .mypoints .point .line .circle .circle__back-1,
.myPage .ides .mypoints .point .line .circle .circle__back-2 {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    filter: blur(1px);
    z-index: 100;
}

.myPage .ides .mypoints .point .line .circle .circle__back-1 {
    box-shadow: 0.4rem 0.4rem 0.8rem var(--greyLight-2), -0.4rem -0.4rem 0.8rem var(--white);
    background: linear-gradient(to bottom right, var(--greyLight-2) 0%, var(--white) 100%);
    -webkit-animation: waves 3s linear infinite;
    animation: waves 3s linear infinite;
}

.myPage .ides .mypoints .point .line .circle .circle__back-2 {
    box-shadow: 0.4rem 0.4rem 0.8rem var(--greyLight-2), -0.4rem -0.4rem 0.8rem var(--white);
    -webkit-animation: waves 3s linear 2s infinite;
    animation: waves 3s linear 2s infinite;
}

.myPage .ides .mypoints .point .img-line {
    padding: 1em;
    margin: 2em;
    background: var(--greyLight-1);
    box-shadow: 0rem 0rem .7rem var(--greyLight-2), 0rem 0rem 0.5rem var(--white);
    border: 1px solid hsl(var(--clr-black), .05);
    border-radius: 25px;
}

.myPage .ides .mypoints .point .img-line img {
    border-radius: 20px;
    background: var(--greyLight-1);
    box-shadow: 0rem 0rem .7rem var(--greyLight-2), 0rem 0rem 0.5rem var(--white);
    border: 1px solid hsl(var(--clr-black), .05);
}

@-webkit-keyframes waves {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes waves {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.myPage .ides .mypoints .point .line .point-title {
    font-size: 30px;
    font-weight: bolder;
    font-family: var(--ff-LamaSans-ExtraBold);
    color: hsl(var(--clr-blue));
}

.myPage .ides .mypoints .point .line.par {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: hsl(var(--clr-black), .75);
    padding: 0;
    gap: .5em;
    font-size: 20px;
    padding-bottom: .75em;
    padding-top: .5em;
}

.myPage .ides .mypoints .point .line.par .dot {
    width: 6.5px;
    height: 6.5px;
    border-radius: 50%;
    background: hsl(var(--clr-red));
    margin-bottom: .25em;
    margin-inline-end: 1em;
    box-shadow: 0px 0px 5px hsl(var(--clr-red));
}

.myPage .ides .mypoints .point .line.par p {
    margin: 0;
}

.myPage .ides .mypoints .point .listpoints {
    padding-inline-start: 3em;
    list-style-type: circle !important;
    font-family: var(--ff-LamaSans-Regular);
    color: hsl(var(--clr-black), .75);
    font-weight: 600;
    font-size: 18px;
    margin: .5em 0;
    margin-bottom: 2em;
}

.myPage .ides .mypoints .point .listpoints pre {
    margin-bottom: 1em;
}

.myPage .ides .mypoints .point .listpoints li {
    padding-bottom: .5em;
}

.myPage .ides .mypoints .point .listpoints li .one {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .5em;
}

.myPage .ides .mypoints .point .listpoints .squer-list {
    list-style-type: square;
    margin-inline-start: 2em;
}

.one-line {
    display: flex;
    align-items: center;
    gap: .5em;
    flex-wrap: wrap;
}


.footer-contnt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3.5em 10em;
  background: var(--greyLight-1);
  box-shadow: -0.3rem -0.3rem 0.6rem var(--greyLight-2),
    0.2rem 0.2rem 0.5rem var(--white);
}

.footer-contnt .footer {
  width: 100%;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
}

.footer-contnt .footer .footer-part .footer-title {
  font-family: var(--ff-LamaSans-Bold);
  color: hsl(var(--clr-blue));
  font-size: 25px;
  padding-bottom: 0.75em;
}

.footer-contnt .footer .footer-part a.footer-title {
  cursor: pointer;
  display: inline-block;
}

.footer-contnt .footer .footer-part .footer-title:hover {
  color: hsl(var(--clr-red));
}

.footer-contnt .footer .footer-part .footer-list .li {
  color: hsl(var(--clr-blue));
  font-family: var(--ff-LamaSans-Medium);
  font-weight: 600;
  padding-bottom: 0.5em;
}

.footer-contnt .footer .footer-part .footer-list .li a {
  color: hsl(var(--clr-blue));
  font-size: 15px;
}

.footer-contnt .footer .footer-part .footer-list .li a:hover {
  color: hsl(var(--clr-black));
}

.footer-contnt .footer .footer-part .contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contnt .footer .footer-part .contact-icons a {
  transition: all 0.3s ease-in-out;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-contnt .footer .footer-part .contact-icons a img {
  max-width: 30px;
  filter: invert(17%) sepia(41%) saturate(2383%) hue-rotate(195deg) brightness(92%) contrast(93%);
}

.footer-contnt .footer .footer-part .contact-icons a:hover {
  background: hsl(var(--clr-white));
}

.footer-contnt .footer .footer-part .contact-icons a:hover img {
  filter: invert(18%) sepia(97%) saturate(3180%) hue-rotate(339deg) brightness(89%) contrast(92%);
}

.footer-contnt .link {
  padding-top: 3em;
}

.footer-contnt .link a {
  color: hsl(var(--clr-blue));
  font-size: 20px;
  font-family: var(--ff-LamaSans-SemiBold);
}

@media (max-width: 1500px) {
    .myPage {
        padding: 1em 2.5em;
    }

    .myPage .mySidmenu {
        gap: .5em;
    }

    .myHeader img {
        max-width: 350px;
    }

    .myPage .ides .mypoints .point .listpoints {
        margin-bottom: 0em;
    }
}

@media (max-width: 1200px) {
    .myPage {
        padding: 0 5%;
    }
    
    .myPage .ides {
        left: 0;
    }

    .myPage .menu-btn {
        display: flex;
        padding: 1em;
        z-index: 550;
    position: fixed;
    top: .75em;
   left: 0;
    }

    .myPage .mySidmenu {
        position: absolute;
        left: -800px;
        padding-bottom: 5em;
        padding-left: 2em;
    }

    .myPage.active .mySidmenu {
        top: 4em;
    position: fixed;
    left: 0%;
    z-index: 500;
    background: hsl(var(--clr-white));
    width: 500px;
    }

    .myPage .ides .mypoints .point .line.par {
        flex-wrap: wrap;
    }
}

@media (max-width: 1000px){
  .footer-contnt {
    padding: 3.5em;
}
}

@media (max-width: 850px) {
    .myHeader img {
        max-width: 350px;
    }

    .myHeader {
        border-radius: 0;
    }

    .myPage .mySidmenu>div {
        flex: unset;
    }
}

@media (max-width: 750px) {
    .myPage .ides {
        padding: 0;
    }

    .myPage .mySidmenu {
        padding-bottom: 0;
    }

    .myPage .ides .mypoints .point .line .circle {
        width: 9rem;
    }

    .myPage .ides .mypoints .point .line .circle .circle__btn {
        width: 7rem;
        height: 7rem;
        font-size: 1.5em;
    }

    .myPage .ides .mypoints .point .line .circle .circle__back-1,
    .myPage .ides .mypoints .point .line .circle .circle__back-2 {
        width: 5rem;
        height: 5rem;
    }

    .myPage .ides .mypoints .point .line .point-title {
        font-size: 20px;
    }

    .myPage .ides .mypoints .point .line {
        align-items: center;
    }

    .myPage .ides .integration,
    .myPage .ides .changelog {
        padding: 0;
    }

    .myPage .ides .mypoints .point .img-line {
        margin: 1em 0.5em;
    }

    .myPage .ides .mypoints .point .listpoints {
        padding-inline-start: 2em;
    }

    .myPage .ides .mypoints .point {
        margin-bottom: 2em;
    }
    
     .footer-contnt .footer{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
  }

  .footer-contnt .footer .footer-part .footer-list .li {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
    .myHeader img {
        max-width: 250px;
    }

    .big-title {
        font-size: 20px;
    }

    .myPage .ides .integration .par,
    .myPage .ides .changelog .par {
        padding-bottom: .5em;
        font-size: 16px;
    }

    .myPage .ides .mypoints .point .line .circle {
        width: 8rem;
    }

    .myPage .ides .mypoints .point .line .circle .circle__btn {
        width: 6rem;
        height: 6rem;
        font-size: 1em;
    }

    .myPage .ides .mypoints .point .line .circle .circle__back-1,
    .myPage .ides .mypoints .point .line .circle .circle__back-2 {
        width: 4rem;
        height: 4rem;
    }

    .myPage .ides .mypoints .point .img-line {
        padding: .5em;
    }

    .myPage .ides .mypoints .point .line.par {
        font-size: 16px;
    }

    .myPage .ides .mypoints .point .listpoints {
        padding-inline-start: 1em;
    }

    code[class*="language-"],
    pre[class*="language-"] {
        font-size: 16px;
    }

    .myPage .ides .mypoints .point {
        padding-bottom: 0em;
    }

    .myPage.active .mySidmenu {
        width: 100%;
        border-right: 3px solid var(--greyLight-1);
    border-left: 3px solid var(--greyLight-1);
    border-bottom: 3px solid var(--greyLight-1);
    }

    .myPage .ides .changelog .added .text{
        font-size: 16px;
    }
    
    
    .added .link-added{
        font-size: 12px;
    }

    .added .link-added br{
        display: block;
    }
    
      .floating-btn {
    position: fixed;
    right: 0em;
    width: 35px;
    height: 35px;
    padding: 0.25em;
  }
}

@media (max-width: 450px) {
    .myPage {
        padding: 0 .5em;
    }

    .myPage .ides .mypoints .point .listpoints .squer-list {
        margin-inline-start: 0;
    }

    .myHeader img {
        max-width: 200px;
    }


    .myPage .ides .integration,
    .myPage .ides .changelog {
        margin-top: 1em;
    }

    .myPage .ides .mypoints .point .line.par {
        padding-bottom: .5em;
    }

    .myPage .ides .mypoints .point .line {
        gap: 1em;
    }
    
      .footer-contnt .footer .footer-part{
    text-align: center;
  }

  .footer-contnt .footer .footer-part .footer-title{
    font-size: 20px;
  }

  .footer-contnt .link a{
    font-size: 16px;
    color: hsl(var(--clr-red));
  }
}