h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

body {
    background: #f9f9f9;
    margin: 0;
}

.gd-main-wrap{
    padding: 50px 20px;
}

.gd-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .gd-container{
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .gd-container{
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .gd-container{
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .gd-container{
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .gd-container{
        max-width: 1320px;
    }
}







.gd-header {
    width: 100%;
    text-align: center;
}

.gd-header .main-hdng {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    color: #0f256e;
}

.gd-header .main-desc {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 20px;
}

.gd-container .gd-controls,
.gd-container .gd-preview {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    width: 50%;
    margin-top: 30px;
}
.gd-container .stop-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.gd-container .stop-row input[type="color"] {
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    padding: 0;
    background: #fff;
    outline: navajowhite;
}
.gd-container .stop-row input[type="text"] {
    width: 90px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: monospace;
    text-transform: uppercase;
    outline: unset;
}
.gd-container .stop-row input[type="range"] {
    flex: 1;
}
.gd-container .stop-row button {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
}
.gd-container .stop-row button:hover {
    color: #f00;
}
.gd-container .gd-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gd-container .preview-box {
    width: 100%;
    height: 300px;
    border-radius: 16px;
}
.gd-container textarea {
    width: 100%;
    margin-top: 20px;
    height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: monospace;
    font-size: 13px;
    resize: none;
    background: #fafafa;
}
.gd-container button.copy {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #0f256e;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 30px);
    height: 50px;
    margin: 20px 15px 0;
    font-size: 16px;
    font-weight: 800;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}
.gd-container button.copy:hover {
    background: #DDEB9D;
}
.gd-container button.copy img{
    width: 20px;
}
.gd-container .add-btn {
    margin-top: 10px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background: #0f256e;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: 0.5s ease;
}
.gd-container .add-btn:hover {
    background: #27667B;
}

.gd-output {
    width: 100%;
    margin-top: 50px;
    background: #0f256e;
    padding: 15px 0;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gd-output label {
    font-size: 24px;
    margin-bottom: 0;
    width: 100%;
    display: block;
    background: #0f256e;
    color: #fff;
    border-bottom: 1px solid #63bbcd42;
    padding-bottom: 15px;
    padding-left: 15px;
}

.gd-output pre {
    margin: 0;
}

.gd-container .gd-controls .control-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
.gd-container .gd-controls .control-group {
    flex: 1;
    margin-top: 15px;
}

.gd-container .gd-controls .control-group label {
    display: block;
}

.gd-container .gd-controls .control-group select {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 5px 15px;
    margin-top: 10px;
    outline: unset;
}

.gd-container .gd-controls .control-group #decrementBtn img,
.gd-container .gd-controls .control-group #incrementBtn img {
    width: 20px;
}

.gd-container .gd-controls .control-group #decrementBtn,
.gd-container .gd-controls .control-group #incrementBtn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: 0.5s ease;
}

.gd-container .gd-controls .control-group #decrementBtn:hover,
.gd-container .gd-controls .control-group #incrementBtn:hover{
    background-color: #f5f5f5;
}


.gd-container .gd-controls .control-group #decrementBtn{
    border-radius: 8px 0 0 8px;
}

.gd-container .gd-controls .control-group #incrementBtn {
    border-radius: 0 8px 8px 0;
}

.gd-container .gd-controls .change-angle {
    display: flex;
    margin-top: 10px;
}

.gd-container .gd-controls .control-group #angle {
    height: 45px;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    text-align: center;
    -moz-appearance: none;
    outline: unset;
    width: 100px;
    font-size: 14px;
    font-weight: 600;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gd-container .stop-row .del-btn img {
    width: 20px;
}

.gd-container .stop-row .del-btn {
    background: #0f256e;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.gd-container .gd-controls .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.gd-container .gd-controls .slider:hover {
  opacity: 1;
}

.gd-container .gd-controls .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #0f256e;
  cursor: pointer;
  border-radius: 50%;
}

.gd-container .gd-controls .slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #0f256e;
  cursor: pointer;
}


.no-gap {
    gap: 0;
}

.gd-row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.gd-container .left-box{
    width: 830px;
    max-width: 100%;
    /* padding: 0 12.5px; */
}

.gd-container .right-box{
    width: calc(100% - 850px);
    /* padding: 0 12.5px; */
}

.gd-container .right-box img{
    width: 100%;
    margin-top: 50px;
    position: sticky;
    top: 25px;
}

.gd-container .content-box {
    border: 1px solid #ddd;
    padding: 40px 30px;
    background: #fff;
    margin-top: 50px;
    border-radius: 16px;
    /* width: 850px;
    max-width: 100%; */
}

.gd-container .content-box .hdng {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0f256e;
}

.gd-container .content-box .cntnt,
.gd-container .content-box li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.gd-container .content-box ul{
    padding-left: 0px;
    margin-top: 10px;
    list-style: none;
}

.gd-container .content-box .subHdng {
    margin-top: 25px;
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f256e;
}

@media screen and (max-width:1200px){
    .gd-container .left-box{
        width: calc(70% - 15px);
    }

    .gd-container .right-box{
        width: calc(30% - 15px);
    }
}

@media screen and (max-width:800px){
    .gd-container{
        gap: 20px;
        flex-direction: column;
    }
    .gd-container .gd-controls, .gd-container .gd-preview{
        width: 100%;
    }
    .gd-container .left-box,
    .gd-container .right-box{
        width: 100%;
    }
}

@media screen and (max-width:480px){
    .gd-container .stop-row{
        flex-wrap: wrap;
    }
    .gd-container .stop-row input[type="text"] {
        width: calc(100% - 50px);
    }
    .gd-container .content-box {
        padding: 30px 15px;
    }
}