@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');


.code__container {
    padding: 10px;
    border-width: 1px;
    border-radius: 5px;
    background-color: #ffffff;
    border-color: #b0b0b0;
    border-style: solid;
    overflow-x: auto;
    overflow-y: auto;
    white-space: nowrap;
    width: 616px;
    height: 267px;
}

.code__container::-webkit-scrollbar-track {
    display: none;
}  
.code__container::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
.code__container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #737272;
    border: 1px solid #737272;
}
.tn-atom tn-atom__html {
    overflow-y: auto;
    overflow-x: auto;
    white-space: nowrap;
}

input {outline:none;}
.input__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
    white-space: nowrap;
}

.copy-wrapper {
    display: flex;
    flex-direction: column;
}
.prop-wrapper {
    display: flex;
    flex-direction: column;
}
.copy__field-comment {
    color: #5c6370;
    font-style: italic;
}
.input-title {
    font-size: 13px;
    color: #212121;
    font-family: 'Roboto';
    margin-bottom: 5px;
}
.modif-css {
    color: #E3555A;
}
.copy__field.css {
    display: block;
}
.copy__field.class-prop {
    color: #6CA0B6;
}
.copy__field.selector-class.bgcolor, .copy__field.selector-class.textcolor, .copy__field.selector-class.brcolor {
    color: #B0B0B0;
}
.copy__field.selector-class {
    color: #212121;
}
.copy__field {
    font-size: 14px;
    color: #212121;
    font-family: 'Courier Prime', monospace;
}

.copy__field.tag-name {
    color: #360C89;
}

.input-block {
    position: relative;
    margin: 0 10px 20px 0;
}

.input__field-1, .input__field-2, .input__field-3 {
    padding: 15px 20px 15px 20px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    width: 200px;
    font-size: 14px;
}
.button-copy {
    background-color: #c01d31;
    color: #ffffff;
    font-size: 10px;
    font-family: 'Arial',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-copy.active {
    background-color: #1ac722;
    color: #ffffff;
    font-size: 10px;
    font-family: 'Arial',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
}
.select__color {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    background-color: #f5f5f5;
    outline: none;
    border-radius: 5px;
    border: 1px solid #2bc48a;
    padding: 16px 20px 16px 20px;
    cursor: pointer;
}
.select__color:focus{
    border-color: rgb(69, 202, 91);
}
.select__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #2bc48a transparent transparent transparent;
    pointer-events: none;
}
.select__wrapper {
    position: relative;
}
.select__color::-ms-expand {
   display: none;
}

@media (max-width: 960px) {
    .code__container {
        width: 516px;
        height: 257px;
    }
}

@media (max-width: 640px) {
    .code__container {
        width: 416px;
        height: 247px;
    }
}

@media (max-width: 480px) {
    .code__container {
        width: 280px;
        height: 247px;
    }
}

@media (max-width: 320px) {
    .code__container {
        width: 200px;
        height: 160px;
        font-size: 12px;
    }
}