﻿
@media screen and (min-width: 0px) and (max-width: 1300px) {

    .SmallRegister {
        display: block !important;
    }

    .LargeRegister {
        display: none !important;
        width: 0px !important;
    }
}

@media screen and (min-width: 1301px) and (max-width: 3000px) {

    .SmallRegister {
        display: none !important;
        width: 0px !important;
    }

    .LargeRegister {
        display: block !important;
    }
}


/* The container */
.container {
    color: var(--textfeildtextfeildlabel);
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 7px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    font-family: var(--body-font-family);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 7px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #0a0a0a;
    border: 2px solid #779D9E;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #0a0a0a;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #0a0a0a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.title2 {
    color: var(--Green_Brand-Green_Brand_300, #779A9C);
    /* H5 */
    font-family: Inter !important;
    font-size: 23.04px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 32.256px */
}

.others {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid var(--Green_Brand-Green_Brand_400_o, #5A7D80);
    background: var(--Green_Brand-Green_Brand_950, #20292C);
    width:440px;
    color:#FFF;
}

.button-setting {
    font-family: var(--body-font-family) !important;
    font-weight: var(--body-font-weight) !important;
    color: var(--buttonbuttontext) !important;
    font-size: 10pt !important;
    text-align: center !important;
    cursor: pointer !important;    
}

.StickedRegister {
    position:sticky !important;
    top:60px;
    left:930px;
}