/* BASIC css start */
.sizePageContainer {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: 5rem 0;
    gap: 10rem;
}
.sizeGuideSex {
    display: flex;
    gap: 3rem;
}
.sizeGuideSex > h4 {
    /* font-weight: 700; */

    line-height: 3rem;
    border-radius: 3rem;
    padding: 0 3rem;
    background-color: var(--white);
    box-shadow: 2px 2px 5px #00000020;
    cursor: pointer;
}
.sizeGuideSex > h4:hover {
    transition: 0.3s;
    background-color: var(--black);
    color: var(--white);
}
#webgl-container {
    width: 1024px;
    height: 720px;
    border-radius: 2.5rem;
    overflow: hidden;
}
.webgl-btns {
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 2;
    display: flex;
    gap: 2rem;
}
.webgl-btns h5 {
    line-height: 2.5rem;
    border-radius: 2.5rem;
    padding: 0 1rem;
    background-color: var(--white);
    box-shadow: 2px 2px 5px #00000020;
    cursor: pointer;
}
.webgl-btns h5:hover {
    transition: 0.3s;
    background-color: var(--black);
    color: var(--white);
}
.webgl-meta {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    height: 4rem;
    background: #ffffffbb;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-evenly;
}
.webgl-meta p {
    color: var(--charcol);
}
.sizeSex {
    display: flex;
    flex-flow: column nowrap;
    gap: 10rem;
}
.sizeInfo {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}
.sizeInfo > h3 {
    font-weight: 700;
    text-align: center;
}
.sizeInfo > p {
    text-align: center;
    color: var(--brandcolor);
}
.sizeInfoList {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 3rem 0;
    /* gap: 2rem; */
}
.sizeInfoContent {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 0.5rem;
    width: 10rem;
}
.sizeInfoContent h5 {
    font-weight: 500;
    color: var(--charcol);
}
.sizeInfoContent p {
    color: var(--darkgrey);
}
.sizeInfoContentSvgWrapper {
    width: 6rem;
    /* height: 15rem; */
    /* background: #00000050; */
}
.sizeInfoContentSvgWrapper svg path {
    fill: var(--lightgrey);
}
.sizeInfoContent .sizepathTransition1 {
    transition: 0.3s;
    fill: #bababa;
}
.sizeInfoContent:hover .sizepathTransition1 {
    fill: var(--brandcolor);
}
.sizeInfoContent:hover h5,
.sizeInfoContent:hover p {
    color: var(--brandcolor);
}
.sizestrokeTransition {
    transition: 0.3s;
    stroke: var(--darkgrey);
}
.sizeInfoContent:hover .sizestrokeTransition {
    stroke: red;
}
.sizeTable {
    display: flex;
    flex-flow: column nowrap;

    border: 1px solid var(--darkgrey);
    margin: 3rem 0 1rem 0;
    border-radius: 2.5rem;
}
.sizetd {
    display: flex;
    line-height: 3rem;
    border-bottom: 1px solid var(--darkgrey);
}
.sizeth {
    background-color: var(--black);
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    font-weight: 500;
}
.sizetd:last-child {
    border-bottom: none;
}
.sizeth h5 {
    color: var(--white);
}
.sizetd h5 {
    width: 11rem;
    padding: 0 2.5rem;
    border-right: 1px solid var(--darkgrey);
}
.sizetd h5:first-child {
    font-weight: 500;
}
.sizetd h5:last-child {
    border-right: none;
}

#sizeRecmdForm {
    margin: 3rem 0;
}
.formlist {
    display: flex;
    box-shadow: 2px 2px 5px #00000020;
    border-radius: 2.5rem;
    margin-bottom: 1rem;
}
.formlist h5 {
    width: 7rem;
    text-align: center;
    line-height: 2.5rem;
    border-radius: 2.5rem;
    background-color: var(--black);
    color: var(--white);
}
.formlist input,
.formlist select {
    background: none;
    padding: 0 1rem;
}
#sizesubmit {
    width: 11rem;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    line-height: 2.5rem;
    border-radius: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
#sizesubmit:hover {
    transition: 0.3s;
    background-color: var(--brandcolor);
}

#sizeRecmdResult {
    text-align: center;
    margin: 1rem;
    font-weight: 500;
}

/* BASIC css end */

