/** Textfield */
.giosg-textfield-input-container {
    border-radius: 5px;
    border-style: solid;
    border-color: #e4e5e7;
    border-width: 1px;
    display: flex;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e4e5e7;
    background-color: #fbfbfb;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    box-sizing: border-box;
    cursor: text;
}

.giosg-textfield-input-container:hover {
    border-color: #7557ff;
}

.giosg-textfield-input-container.disabled {
    border-color: #e4e5e7;
    cursor: not-allowed;
}

.giosg-textfield-input.giosg-textfield-input {
    outline: none !important;
    outline-offset: 0px !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    -webkit-appearance: none !important;
    display: inline-block !important;
    font: inherit !important;
    padding: 13px 11px 13px 15px !important;
    height: auto !important;
    margin: 0 !important;
    text-transform: inherit !important;
    text-indent: inherit !important;
    text-shadow: inherit !important;
    text-align: start !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    width: 100% !important;
    word-spacing: inherit !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
    line-height: 18px !important;
    color: #242335 !important;
    flex-shrink: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
    writing-mode: horizontal-tb !important;
    -webkit-writing-mode: horizontal-tb !important;
    -webkit-rtl-ordering: logical !important;
    cursor: text !important;
    -webkit-box-shadow: 0 0 0 30px #fbfbfb inset !important;
}

.giosg-textfield-input.giosg-textfield-input:disabled {
    cursor: not-allowed !important;
}
/** Checkbox */
.giosg-checkbox {
    display: flex;
    user-select: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 18px;
    -webkit-tap-highlight-color: transparent;
}

.giosg-checkbox-input-label {
    margin: 0;
    display: flex;
    align-items: center;
}

.giosg-checkbox-input {
    position: absolute;
    opacity: 0;
}

.giosg-checkbox-input-box {
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #c1c1c9;
    box-sizing: content-box;
    color: #ffffff;
    cursor: pointer;
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px;
    height: 16px;
    margin: 0;
    position: relative;
    width: 16px;
}

input[type='checkbox']:checked + .giosg-checkbox-input-box {
    background-color: #7357ff;
    border-radius: 4px;
    border: 1px solid #7357ff;
    box-sizing: content-box;
    color: #ffffff;
    cursor: pointer;
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px;
    height: 16px;
    margin: 0;
    position: relative;
    width: 16px;
}

.giosg-checkbox-text-label {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 10px;
}

.giosg-checkbox-text {
    font-weight: 700;
    margin-bottom: 0px;
}

/** Button */
.giosg-button {
    outline: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    -webkit-letter-spacing: 0.3px;
    -moz-letter-spacing: 0.3px;
    -ms-letter-spacing: 0.3px;
    letter-spacing: 0.3px;
    line-height: 18px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 20px;
    cursor: pointer;
    height: auto;
    min-height: 40px;
    min-width: 40px;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: auto;
    background-color: #7357ff;
    border: none;
    box-shadow: 0 3px 5px 0 rgba(115, 87, 255, 0.25);
    color: #ffffff;
    padding: 8px 10px;
    width: 100%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-tap-highlight-color: transparent;
    width: auto;
}

.giosg-button.full-width {
    width: 100%;
}

.giosg-button.positive {
    background-color: #38d09b;
}

.giosg-button:hover {
    background-color: #7c61ff;
    box-shadow: 0 3px 7px 0 rgba(115, 87, 255, 0.4);
}

.giosg-button:active {
    background-color: #6a4dfc;
    box-shadow: none;
}

.giosg-button:disabled {
    background-color: #e4e5e7;
    box-shadow: none;
    color: #c1c1c9;
    cursor: not-allowed !important;
}

.giosg-button.positive:hover {
    background-color: #36dba1;
}

.giosg-button.positive:active {
    background-color: #31c491;
    box-shadow: none;
}

.giosg-button.positive:disabled {
    background-color: #38d09b;
    box-shadow: none;
    cursor: not-allowed !important;
}

.giosg-button-minor {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    -webkit-letter-spacing: 0.3px !important;
    -moz-letter-spacing: 0.3px !important;
    -ms-letter-spacing: 0.3px !important;
    letter-spacing: 0.3px !important;
    line-height: 18px !important;
    -webkit-align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    height: auto !important;
    min-height: 40px !important;
    min-width: 40px !important;
    text-align: center !important;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-transition-timing-function: ease-in !important;
    transition-timing-function: ease-in !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    width: auto !important;
    background-color: transparent !important;
    border: none !important;
    color: #7357ff !important;
    padding: 2px !important;
    -webkit-tap-highlight-color: transparent;
}

.giosg-button-minor:hover {
    background-color: #f7f5ff !important;
}

.giosg-button-minor:active {
    background-color: #e3deff !important;
}

.giosg-button-minor.link {
    padding: 0px 16px !important;
    line-height: 40px !important;
}

.giosg-button-center {
    padding: 0px 2px;
}

.giosg-button-side {
    display: flex;
    padding: 0px 6px;
}

/** Header (Typography)*/
.giosg-header {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    -webkit-letter-spacing: 0.5px;
    -moz-letter-spacing: 0.5px;
    -ms-letter-spacing: 0.5px;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 0;
    color: #242335;
}

/** Link (Typography)*/
.giosg-link {
    color: #7357ff !important;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    -webkit-letter-spacing: 0.3px;
    -moz-letter-spacing: 0.3px;
    -ms-letter-spacing: 0.3px;
    letter-spacing: 0.3px;
    line-height: 18px;
}

.giosg-link:hover {
    -webkit-text-decoration: underline !important;
    text-decoration: underline !important;
}

/** Body text (Typography)*/
.giosg-body-text {
    font-family: Nunito Sans, sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 18px;
}

/** Input text (Typography)*/
.giosg-input-text {
    margin-top: 0px;
    font-family: Nunito Sans, sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 18px;
}
